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
Oh thank you very much! I removed the code completely. I had a duplicate radio problem and forgot to remove it. Thanks a lot!