I can't seem to remove log in and sign up from my mobile menu and just wondered if anyone can point me in the right direction at all?TIA
Hello,
Go To Settings -> Checkout -> "Accounts are disabled" and the login/register will disappear
Hope this helps
Thank you. I was hoping to just remove the links from the menu though, rather than disable accounts altogether.
Doable as well if you don't mind getting into the code, would you mind sharing your store's URL?
Hi @Vls
Add the following code to theme.scss.css:
#SiteNav > ul.list--nav > li:nth-child(4) { display: none; } #SiteNav > ul.list--nav > li:nth-child(5) { display: none; }
That should do it!