How do I remove log in and sign up from mobile menu in Simple Theme

Vls
Visitor
3 0 0

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

Replies 5 (5)

JHKCreate
Shopify Expert
3571 639 916

Hello,

Go To Settings -> Checkout -> "Accounts are disabled" and the login/register will disappear

Hope this helps

Did we solve your issue? Like & Mark As Solution to help the community
Should you need any direct help: contact@jhkcreate.com

Learn more about us: jhkcreate.com
Vls
Visitor
3 0 0

Thank you. I was hoping to just remove the links from the menu though, rather than disable accounts altogether.

JHKCreate
Shopify Expert
3571 639 916

Doable as well if you don't mind getting into the code, would you mind sharing your store's URL?

Did we solve your issue? Like & Mark As Solution to help the community
Should you need any direct help: contact@jhkcreate.com

Learn more about us: jhkcreate.com
Vls
Visitor
3 0 0
No problem! It's www.dirtypudds.com

Thanks!
JHKCreate
Shopify Expert
3571 639 916

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!

Did we solve your issue? Like & Mark As Solution to help the community
Should you need any direct help: contact@jhkcreate.com

Learn more about us: jhkcreate.com