Hi there,
I am new to Wix and honestly have no experience with coding, however, I was hoping to figure out how to hide and show a strip on my home page.
Because of the nature of my site, I want the strip to be hidden from visitors that aren’t members, and for it to be shown only once a member logs in - the strip contains buttons for the ‘shop’ pages and the search bar.
I have been looking for an example of the code on this site that I could hopefully copy, but if anyone has any suggestions or help it would be much appreciated.
Thanks so much
Hello! So you will need to do 2 things. First check if the user is a member and is logged in and then you can call show()
Check out this API reference to get started for checking if the user is logged in. There is a code snippet you can start with
https://www.wix.com/velo/reference/wix-members/authentication/loggedin
Then in the if conditional from the snippet in the above link you will be able to call your show if logged in is true or hide if logged in is false
https://www.wix.com/velo/reference/$w/hiddenmixin/hide
Ah thank you!! I will give it a go!