Is there a way to get rid of one of these currencies? For it not to show on my site?
Thanks,
Hi @Nadine10
This Currency is in the announcement bar? I just use the Demo of Lorenzo theme you can try it.
From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
Find the theme that you want to edit and click on “Actions” and then “Edit code”.
In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
.utility-bar__selectors {
display: none !important;
}
And Save.
if not working, would you mind to share your store URL? Thanks!
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
Hi, thanks for your reply. I meant just to get rid of one currency within the list?
THanks!
Can i check? And which country you like to remove?
Thanks for the info, check this one.
From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
Find the theme that you want to edit and click on “Actions” and then “Edit code”.
In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
a.disclosure-list__option[data-value="IL"] {
display: none !important;
}
And save.
Result:
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!