For example, the site has the below nav items, how to hide the ones in red box before sign in, and show these hidden nav items after sign in? Please provide some detailed steps if possible, thanks.
For example, the site has the below nav items, how to hide the ones in red box before sign in, and show these hidden nav items after sign in? Please provide some detailed steps if possible, thanks.
If you're concerned about security you should use access control rules.
Hi @jwnz
Please follow the instructions from @eugenevanstaden . You can use liquid to build dynamic content. In addition, there is also a way to use the web page access control rule. Closely related to your query.
You can tweak the logic as per your need.
Hope it helps.
------------
If you like this post, give it a Thumbs up. Where it solved your request, Mark it as a Solution to enable other users to find it.
@jwnz
In the header template you can use Liquid to hide blocks by checking the user object.
{%if user%}
enable your nav HTML here
{%endif%}
@