All Collections
Marketing
Content Management
Hide Your Default Account Nav
Hide Your Default Account Nav

We added a default account navigation that expands as people engage more, but we also give you the option to remove it to place your own.

Updated over a week ago

We added a default account navigation that expands as people engage more, but we also give you the option to remove it to place your own.


โ€‹

You can hide the account nav that we add by using css. Then, add a new nav to your Member layout which you can then link to whatever pages you need to.

Keep in mind, in this article https://blog.peoplevine.com/blog/30637, you can replace almost ANY page with HAPI if you want to retain our standard URL paths.

To hide the account nav, start by identifying in your code.

Notice the ID account-nav, we can use that to hide it by adding this css to your layout.

#account-nav {
display: none;
}

Now, you can add a new set of HTML to the layout that is set for logged in members.


โ€‹

Did this answer your question?