Remove currency converter?

Topic summary

A user seeks help removing the currency converter from their Shopify store header.

Solution Provided:

  • Navigate to Admin → Online Store → Themes
  • Select the active theme
  • Open the CSS file in the Asset folder (main.css, base.css, style.css, or theme.css)
  • Add custom CSS code at the bottom to hide the currency converter element

Technical Details:
The solution uses CSS display: none targeting the header localization/currency selector class.

Status: A working solution has been shared, pending confirmation from the original poster.

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

How do I remove the currency converter please?

url: https://errival.com/products/errival%E2%84%A2-mini-rubber-band-shotgun

1 Like

Hi @Ryan1998

check this one.

From you Admin page, go to Online Store > Themes

Select the theme you want to edit

Under the Asset folder, open the main.css(base.css, style.css or theme.css)

Then place the code below at the very bottom of the file.

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

And Save.

Result:

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

1 Like