How can I hide the 'currency' from the 'Country Selector' in the Header and Footer of Sense theme

In Sense theme - I want to display the country selector, but I don’t want it to show the currency next to it. Is there a way to do this?

Also I am using Hextom: Translate & Currency to display the currency drop down. Also can i have the currency drop down for Hextom change automatically per country selection?

Hi @DITeas

Welcome to the Shopify Community! Please share your store URL and password (if it’s password-protected), so I can check and provide you with the exact solution.

Best regards,
Devcoder :laptop:

Not password protected - www.diteas.com. Thank you :slight_smile:

Hi @DITeas

Which one would you like to remove—the first one or the last one?

Best regards,
Devcoder :laptop:

I want to remove only the currency in the 2nd one. I want INR with the flag - that is from Hextom. And I want the country selection, which is part of the theme. But i don’t want INR along with the country in the 2nd box.

Hello @DITeas

Here are the steps to apply the necessary changes in your Shopify store:

  1. In your Shopify Admin, navigate to Online Store > Themes > Actions > Edit Code.

  2. Open Snippets > country-localization.liquid . Locate the following code and comment it out.

     <span>
          {{- localization.country.name }} |
          {{ localization.country.currency.iso_code }}
          {{ localization.country.currency.symbol -}}
        </span>
    

    Replace it with below code.

    <span> {{- localization.country.name }} </span>

This will display only the country name without the currency details.

Review the screenshot for your reference:

Let me know if you need further assistance!

This worked. Thank you so much.

Great to know the solution helped!