How can I remove the currency converter tab from my menu?

Hello, I no longer want to offer the currency converter as I don’t think it’s even set up anymore. I possibly removed the app. Can you help me remove the code that will take it away from the top of the side menu, thanks.

https://astrorisingapparel.com

1 Like

Hi @TashaD ,

Hope you are well.

Please follow the below steps:

  1. Go to Online Store->Theme->Edit code
  2. Asset->/themes.scss.css
  3. Paste the below code at the bottom of the file & Click Save
.pick_currency {
display:none!important;
}

Copy

Hope that helps

Thanks

@TashaD

Please add the following code at the bottom of your assets/theme.scss.liquid file.

.site-header__upper .pick_currency{
display: none;
}

Hope this works.