Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hi all,
I already untick the header "Country/region selector", and it never show in my pc edi (which is good), but not sure why when I use my phone to view my website, the country/region selector still there, is there anyway to hide it?
Here is my website link:
https://18s8pg-0g.myshopify.com/
Thank you.
Solved! Go to the solution
This is an accepted solution.
Hey! @empressculture,
Go to your Shopify Admin Panel.
Navigate to Online Store → Themes.
Click on Edit Code (not Customize).
Open the theme.liquid file (found inside the Layout folder).
Scroll down and paste the code just before the </head> tag:
<style>
.menu-drawer__localization.header-localization {
display: none !important;
}
</style>
This is an accepted solution.
Hey! @empressculture,
Go to your Shopify Admin Panel.
Navigate to Online Store → Themes.
Click on Edit Code (not Customize).
Open the theme.liquid file (found inside the Layout folder).
Scroll down and paste the code just before the </head> tag:
<style>
.menu-drawer__localization.header-localization {
display: none !important;
}
</style>
Hey @empressculture
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 </body> tag
<style>
.menu-drawer__localization.header-localization {
display: none !important;
}
</style>
RESULT:
If I managed to help then, don't forget to Like it and Mark it as Solution!
Best Regards,
Moeed