Re: Removing Account Login in Menu

Solved

Removing Account Login in Menu

Eman_Akb1
Visitor
3 0 0

Eman_Akb1_0-1730760183773.png

Eman_Akb1_1-1730760208173.png

Hello, I would like to completely remove these from my store. How would i do so?

 

Accepted Solution (1)

Brett_Helium
Shopify Partner
296 56 134

This is an accepted solution.

Hey @Eman_Akb1! There's actually a setting for this directly in your Shopify admin settings under "Customer accounts". Toggling off the option to show login links should automatically hide these from your theme without having to edit any code.

Brett_Helium_0-1730765346727.png

 

Brett | Helium
- Customer Fields ✪✪✪✪✪ (360+ reviews)
- Meteor Mega Menu ✪✪✪✪✪ (290+ reviews)
- Strike Automatic Discounts NEW!

View solution in original post

Replies 4 (4)

comercioservice
Shopify Partner
283 38 34

@Eman_Akb1  

 

hi Hope you are well,
I’ve taken a look at what you need—just a little CSS magic, and everything will be fixed! Follow my steps, and you'll have it sorted in no time!

1, from admin, go to Online Store > Themes.
2, Actions > Edit code for your active theme.
3, Find and open the theme.liquid file, maybe in the Layout folder.
4, Look for the </head> tag and paste the code in the end

 

<style>a.header__icon.header__icon--account.link.focus-inset.small-hide {
    display: none;
}

a.menu-drawer__account.link.focus-inset.h5.medium-hide.large-up-hide {
    display: none;
}
</style>​

 

 

I hope it works for you, let me know, and If you'd like to discuss this more, don't hesitate to send me a PM
Thank you
Was my reply helpful? Click Like to let me know! Was your question answered? Mark it as an Accepted Solution.
Need store customizations, bug fixing or development ? Contact with us -- Support form for quick quote!
BFCM Big Deals: Big savings 25% off -on our Shopify FAQs apps!
Eman_Akb1
Visitor
3 0 0

It was not available in my header setting. Removing the code removed the icon on desktop, but not on mobile

Brett_Helium
Shopify Partner
296 56 134

This is an accepted solution.

Hey @Eman_Akb1! There's actually a setting for this directly in your Shopify admin settings under "Customer accounts". Toggling off the option to show login links should automatically hide these from your theme without having to edit any code.

Brett_Helium_0-1730765346727.png

 

Brett | Helium
- Customer Fields ✪✪✪✪✪ (360+ reviews)
- Meteor Mega Menu ✪✪✪✪✪ (290+ reviews)
- Strike Automatic Discounts NEW!
Eman_Akb1
Visitor
3 0 0

this worked, thank you!