• Resolved catalyst29

    (@catalyst29)


    Hello !

    I created this form, which displays fine when I’m connected to the site :

    <p>
    <input type="text" name="FNAME" required="" placeholder="Prénom">
    </p>
    <p>
    <input type="email" id="email" name="EMAIL" placeholder="E-mail" required>
    </p>
    <p>
    <input class="submit" type="submit" value="Abonnez-vous">
    </p>

    But when disconnected, the code appears like this :

    <p>
    <label>Prénom</label>
    <input type="text" name="FNAME" required="" placeholder="Prénom">
    </p>
    <p>
    <label for="email">
    Adresse de courrier électronique:
    <input type="email" id="email" name="EMAIL" placeholder="E-mail" required>
    </label>
    </p>
    <p>
    <input class="submit" type="submit" value="Abonnez-vous">
    </p>

    I cannot juste hide labels because i got one input inside of it. How come it behaves like this ?

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Contributor Lap

    (@lapzor)

    Hi,

    With connected and disconnected to you mean logged in to Wp-Admin and logged out?

    I’ve seen this before and in that case it was custom code in the theme that strips the label away. The theme likely did that in an attempt to create some sort of custom styling on the form.

    Maybe you can ask your theme’s support department about this first?

    Kind regards,

    Thread Starter catalyst29

    (@catalyst29)

    Hello,

    I created the theme, and there is no code about being logged in or not.

    I see today that the problem seems to be solved, by itself.

    Thank you

Viewing 2 replies - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.