How can I disable and locate the language and currency selectors on mobile?

Hello,

I have disabled the language selector and currency selector from the customize tab but on the mobile it still appears. Could you help me solve this issue. And also want to locate the selector in code for mobile v

2 Likes

Hey @EGM1

Could you please provide your Store URL and, if applicable, the Password too? Your cooperation is greatly appreciated!

Best Regards,
Moeed

Sure,

https://egeneralmarket.com/

There is no password. The problem is that on mobile when you open the drawer at the bottom there is still the selector even tho I have disabled it.

Hey @EGM1

Follow these Steps:

  1. Go to Online Store

  2. Edit Code

  3. Find theme.liquid file

  4. Add the following code in the bottom of the file above tag


RESULT:

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

1 Like

Hi @EGM1

Try 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:
@media only screen and (max-width: 989px){
#HeaderCountryMobileForm > div > div > button {
    display: none !important;
}
}

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

Thank you so much for the solution, it worked. Is it possible to help how to ad a new div inbetween the spaces to add something else ?

Thank you for your reply. I’m glad to hear that the solution worked well for you. If you require any more help, please don’t hesitate to reach out. If you find this information useful, a Like would be greatly appreciated. Also, if you’d like to add another div to add something else then it would require custom coding as it’s not only possible via CSS. If you’re not familiar with coding then I suggest you to hire a Shopify developer who can help you out.

Best Regards,

Moeed

1 Like