• Resolved dngdesigns

    (@dngdesigns)


    Hello, the remember me check box doesn’t appear

    • This topic was modified 4 years ago by dngdesigns.

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Phil

    (@philsbury)

    Hi @dngdesigns,

    It’s not on by default, have you toggled the setting?

    View post on imgur.com

    Thanks
    Phil

    Plugin Author Phil

    (@philsbury)

    Hi again @dngdesigns,

    Sorry, wasn’t looking properly (long week!)

    Your theme has this custom css (in customiser I think) which is hiding all checkboxes (this is pretty bad practice btw, have a look at this):

    
    label > input[type="radio"], label > input[type="checkbox"], input[type="checkbox"].wpcf7-acceptance {
      display: none;
    }
    

    Easiest thing to do is to omit the age gate one, so update that custom css with:

    
    label > input[type="radio"], label > input[type="checkbox"]:not([name="age_gate[remember]"]), input[type="checkbox"].wpcf7-acceptance {
        display: none;
    }
    

    Thanks
    Phil

    Thread Starter dngdesigns

    (@dngdesigns)

    Oh thank you very much! I removed the code completely. I had a duplicate radio problem and forgot to remove it. Thanks a lot!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘No remember me checkbox’ is closed to new replies.