Removing currency dropdown menu to make room for currency app

Hi,

We have back in the days had our old developer add a currency conversion menu at the top left of our website. However this one doesn’t change dynamicly on location of the visitor which we want.

We have found that numerous apps sort this with little to no effort/cost. So we want to add an app, but obviously with an app that auto changes currency, we would need the top currency converter gone. I believe this one is made somewhere in the theme files.

Our store: www.unlimitedcph.dk

Does anyone know how we can easily delete the currency selector in top left corner? So we can make space for an application?

Thanks.

Hey @Anton_Skanning ,

There can be 2 ways to do this.

  1. You can to section/header.liquid find out currency dropdown code and remove from there.

  2. Via code. You can add the following code in your assets/theme.scss.liquid file.

.Header__CurrencySelector{
display: none;
}

Hope this works for you.

Thanks!

Perfect, did solution 2, worked like intended!

Hi,

I try to add the line to assets, theme.js but this doesn’t work for my store. When I add the code my first slides disappeared.

My theme is Alchemy.

Can you suggest?