I would like to know how to hide the RSVP Button from people who are not registered to my site – so that only logged in users can see the option to RSVP.
I already tried:
.button-class display: none; }
.logged-in .button-class{ display: block; }
but it seems that that does not work as it either hides it for everyone regardless if logged in or not or it just shows it to everyone…
I would like to know how to hide the RSVP Button from people who are not registered to my site – so that only logged in users can see the option to RSVP.
I already tried:
.button-class display: none; }
.logged-in .button-class{ display: block; }
but it seems that that does not work as it either hides it for everyone regardless if logged in or not or it just shows it to everyone…
Thank you very much!
Thank you very much!
Hi,
No, that won't work.
Open your theme or child-theme functions.php file and insert following hook:
Stachethemes Developer
Awesome, that worked! Thank you very much for your help!