Hi there,
I’ve just taken a look at your website, it seems like the checkbox is actually checked, it’s just hidden on the screen. Please see the image here: https://persistentlogin.com/wp-content/uploads/2022/08/checkbox-checked.png
This CSS is hiding the checkbox on your form:
.wlrp-skin-s4.wlrp-popup-modal input[type='checkbox'] {
background: #fbfbfb;
display: none; /* this line specifically if hiding the checkbox /*
}
If you want to show the checkbox, please remove the display: none;
line.
Alternatively, if you want to hide the remember message as well as the checkbox, you could add some CSS that targets the label which wraps around the checkbox. Or the premium version of Persistent Login has the ability to hide the checkbox and the label automatically for you.
-
This reply was modified 2 years, 7 months ago by
lukeseager.