Hide pages form logout user.

Posted in: Newspaper
Post count: 2

It is possible to hide a page on the menu from a logout user using custom code in the theme panel, and then show when he is logged in?

Thanks

Post count: 22421

Hello,

Each menu item has it;s own unique id you can see in your browser inspector. You can use that id with css like
so:
.menu-item-9567{
display:none;
}

.logged-in .menu-item-9567{
display:block!important;
}

Simply place the code in the custom css box and change the menu item number with your own.

Thank you!

Viewing 2 posts - 1 through 2 (of 2 total)
The forum ‘Newspaper’ is closed to new topics and replies.