How do I get rid of the currency selector in the header?

Topic summary

A store owner wants to remove the currency selector appearing next to the login button in their header.

Multiple CSS-based solutions were provided:

  • Add custom CSS targeting .thb-localization-forms or .thb-secondary-myaccount with display: none !important;
  • Insert code in either the theme customizer’s Custom CSS section, the app.css file, or the theme.liquid file before the </head> tag
  • Different responders suggested slightly different CSS selectors, likely due to theme variations

Alternative approach:

One responder suggested using the theme customizer to disable the currency switcher through the Header section settings by toggling off “Enable Currency Switcher.”

Status: The discussion remains open with no confirmation from the original poster about which solution worked. Screenshots were provided showing the expected results.

Summarized with AI on October 31. AI used: claude-sonnet-4-5-20250929.

Hi @timelessracing

I am from Mageplaza - Shopify solution expert.

Please follow the following instructions to solve the above problem:

  1. Go to shopify Admin> Online Store> Themes

  2. Click Actions> Edit Code

  3. Find file assets/app.css and add this code at the end of the file

#header #HeaderLocalization{
    display: none;
}

Please let me know if it works as expected!

Best regards