Remove currency from language picker

Topic summary

A user seeks to remove currency display from both the top bar and mobile drawer menu while keeping the country selector visible on their Shopify store.

Key developments:

  • Initial request required store password access for troubleshooting
  • Password was shared (asas) for collaboration
  • One responder indicated this cannot be accomplished with CSS alone and requested code collaboration access
  • Another contributor provided a CSS-based solution

Proposed solution:
Add custom CSS to the theme.liquid file (before the tag) that uses display: none !important to hide currency-related elements while preserving country selection functionality.

The discussion remains open as the original poster has not confirmed whether either proposed approach successfully resolved the issue.

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

Hi,

can anyone help me remove the currency in the top bar as well as the mobile drawer menu without removing the country ?

1 Like

Hi @Daniel19901

Your Store is password protected Kindly share the Password

@Mehran_Ali thx.

Password is: sasa

It Can’t be Done using css Can you share you store collaboration code

Hi @Daniel19901

Try 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 “theme. Liquid” file. Find the tag and paste the code below before the tag.
.m-menu-drawer__wrapper .m-switcher-dropdown.m-country-switcher, .m-switcher-dropdown.m-country-switcher {
    display: none !important;
}

Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!