We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 5340
    • 1,624 Posts
    Hi,

    The default output for [+form.field+] looks like this

    <label for="field" id="field">field
        <input type="checkbox" name="field" id="field" />
    </label>


    I personally do not like this template and I would like to change it to
    <label for="field" id="field">field</label>
    <input type="checkbox" name="field" id="field" />


    I couldn’t find a parameter to change the template so I wonder if I missed something.


    Thank you
      • 5340
      • 1,624 Posts
      Solved by updating the webloginpe.class.php file.

      search for all the </label>

      comment $ph .= ’</label>’."\n";

      update the <label line to .$label.’</label>’."\n";