Remove currency/language selector in menu drawer - Trade Theme

Topic summary

A user wants to remove the language and currency selector from the mobile menu drawer in Shopify’s Trade Theme, as it continues to display despite being deselected in customization settings.

Proposed Solution:

  • Navigate to Online Store > Edit Code
  • Locate the drawer.css file
  • Add CSS code at the bottom: .menu-drawer__localization.header-localization { display: none; }

Status: A solution has been provided but not yet confirmed as resolved by the original poster. The fix uses custom CSS to hide the localization selector component specifically in the menu drawer view.

Summarized with AI on November 7. AI used: claude-sonnet-4-5-20250929.

Hi, i want to remove the language and currency selector in the menu drawer on mobile view (see reference). For some reason it is still displaying despite me deselecting it as an option on the customise theme page.

my URL is golazocasesuk.myshopify.com

appreciate any help :slightly_smiling_face:

Hello @golazocases

Go to Online Store > Edit Code > component-drawer.css file
Add the below code at the bottom of the file

.menu-drawer__localization.header-localization {
display: none;
}

Thanks

1 Like