How can I hide the currency selector on mobile but keep it on desktop?

Is there a way i can remove/hide the currency selector icon from my store face on mobile , but still keep it on my store face on desktop???

Store URL: https://emp7re.com

Any help would be greatly appreciated.

1 Like

@JHUTCHESSON1707 , do this to fix it in 20 seconds:

  1. In your Shopify Admin go to: online store > themes > actions > edit code
  2. Find Asset > theme.scss.liquid or theme.css and paste this at the bottom of the file:
@media (max-width: 767px){
    .doubly-wrapper{
        display: none !important;
    }
}

Please let me know whether it works.

Kind regards,
Diego

@JHUTCHESSON1707

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

Show More

@media only screen and (max-width: 749px) {

Show More

.doubly-wrapper{ display: none; }

Show More

}

Hope this works.

hello @JHUTCHESSON1707

please Go to Online Store->Theme->Edit code then go to assets/theme.css ->paste below code at the bottom of the file.

@media only screen and (max-width: 749px) {
.doubly-wrapper{ display: none; }
}