ryan.sander Posted January 19, 2022 Share Posted January 19, 2022 Site URL: https://themillgym.squarespace.com Hi, I am building multiple member areas for a client. But i don't want to display every page. Basically I am first building a blog page and then linking the blog posts to another page because I can better customise what we are trying to display. So I want all the blog pages in the member area hidden in the navigation. I know I can hide the page like normal but then all the links to the other page get broken. Does anyone know how I can customise what appears in the navigation? Thank you Ryan Link to comment
Beyondspace Posted January 19, 2022 Share Posted January 19, 2022 24 minutes ago, ryan.sander said: Site URL: https://themillgym.squarespace.com Hi, I am building multiple member areas for a client. But i don't want to display every page. Basically I am first building a blog page and then linking the blog posts to another page because I can better customise what we are trying to display. So I want all the blog pages in the member area hidden in the navigation. I know I can hide the page like normal but then all the links to the other page get broken. Does anyone know how I can customise what appears in the navigation? Thank you Ryan What is your protected password? Greeting, it's BeyondSpace, I am Squarespace dev focus on provide solutions to enhance feature that squarespace.com can't provide.Feel free to check my current Squarespace Plugins Developement: Enable Pinch/Zoom on lightbox, Delivery Date Picker, Lightbox Studio pluginIf you find my answer fit your need, let's leave a like or upvote so others with the same issue can find their solution. Thank you Link to comment
ryan.sander Posted January 20, 2022 Author Share Posted January 20, 2022 Thanks for the reply. Unfortunately my client won't let me share the password. Although I don't really think it is necessary. I just want to know how I can hide certain pages in the navigation in member areas. Thank you Ryan Link to comment
ninnaamora Posted March 7, 2022 Share Posted March 7, 2022 Did you get an answer? I was planning to do the same thing, but saw that the pages were adding to the navigation too. I was told there wasn't a way to have that similar "not linked" section in the member areas. Link to comment
ryan.sander Posted April 7, 2022 Author Share Posted April 7, 2022 On 3/8/2022 at 7:47 AM, ninnaamora said: Did you get an answer? I was planning to do the same thing, but saw that the pages were adding to the navigation too. I was told there wasn't a way to have that similar "not linked" section in the member areas. Hi no I never got an answer. But as a workaround I used the portfolio section which ended up being a good solution. Link to comment
abicon Posted February 14 Share Posted February 14 I found this to work for hiding individual pages from the member nav. just replace the urlslug with your page's url slug. You need to do both to work on desktop and mobile nav /*HIDE MENU ITEMS*/ .header-nav-list [href="/urlslug”] { display: none; } .header-menu-nav-list [href="/urlslug”] { display: none; } Link to comment
audreyburke Posted April 9 Share Posted April 9 (edited) I got this to work on my site by injecting code into the Header under SETTINGS/ADVANCED/CODE INJECTION. Replace urlslug with the urlslug of the page you wish to hide. <style> /* hide page from member area navigation on desktop */ .header-nav-item--folder [href="/urlslug"] { display: none !important; } /* hide page from member area navigation on mobile */ @media (max-width: 640px) { /* or any other mobile breakpoint */ .header-menu--folder-list [href="/urlslug"] { display: none; } } </style> Edited April 9 by audreyburke Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment