I absolutely love the Gopi theme, but when I use it on Vanilla 2.3 it's missing the option to "Keep me signed in" on the login screen. It seems like that option appears for every other theme I use, but not this one.
@lljan said:
I absolutely love the Gopi theme, but when I use it on Vanilla 2.3 it's missing the option to "Keep me signed in" on the login screen. It seems like that option appears for every other theme I use, but not this one.
I hid the checkbox, but it by default is checked. If you want show it. You need to remove css class ".CheckBoxLabel" from file style.css in 44 line.
Comments
Not sure why the author of this theme added the categories view in this theme. But that is not recommended.
Also the jQuery in the custom.js can cause problems
You need to change this
$(document).ready(function()
To this
jQuery(document).ready(function($)
As far as why something is not showing, you can inspect the element with a web inspector and see if it has display:none in the css code.
But it is a check box, and it might be affected by js . For faster help, please give out a link to your forum.
❌ ✊ ♥. ¸. ••. ¸♥¸. ••. ¸♥ ✊ ❌
I hid the checkbox, but it by default is checked. If you want show it. You need to remove css class ".CheckBoxLabel" from file style.css in 44 line.
Thanks for the advice. I fixed it.