Remove Log In section in menu drawer, dawn

Hello, i would like to remove the log in section on my menu drawer:

my website is www.antico-abito.com , theme is dawn

2 Likes

Hey @ads18922

Follow these Steps:

  1. Go to Online Store

  2. Edit Code

  3. Find theme.liquid file

  4. Add the following code in the bottom of the file above tag


RESULT:

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

You can remove the ā€œLog inā€ section from your menu drawer by disabling the customer account from the settings.

Disable Customer Accounts

  • Go to Settings > Customer Accounts in your Shopify admin.
  • Uncheck ā€œShow login linksā€ to turn off login.
  • Save changes. ( it will disable the login from the store )

is there a way to remove that whole grey section, including the language and social media icons

Hello @ads18922

Go to Online Store, then Theme, and select Edit Code.
Search for assets/base.css Add the provided code at the end of the file.

.menu-drawer__utility-links:has(.menu-drawer__localization) .menu-drawer__account {
display: none;
}

Hi @ads18922

Do you mean to remove everything on the below menu drawer? if it is check this one.

  1. From your Shopify admin dashboard, click on ā€œOnline Storeā€ and then ā€œThemesā€.
  2. Find the theme that you want to edit and click on ā€œActionsā€ and then ā€œEdit codeā€.
  3. In the ā€œAssetsā€ folder, click on ā€œbase.css, style.css or theme.cssā€ file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
.menu-drawer__navigation-container .menu-drawer__utility-links {
    display: none;
}

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

Welcome! Would you mind hitting ā€˜like’ as well? Thanks!