how to remove the country and language selection in the shopify site menu?
Ideally, a solution to this problem without interfering with the code.
how to remove the country and language selection in the shopify site menu?
Ideally, a solution to this problem without interfering with the code.
Hi @saintjan
Would you mind to share your Store URL website? with password if its protected. Thanks!
https://ljk0kxisugedmtur-54888530078.shopifypreview.com
But this is in the mobile version
Thank you for the information. Try this one.
@media only screen and (max-width: 989px){
.menu-drawer__localization.header-localization {
display: none;
}
}
thanks very much, it was helpful
I still have a problem((
in the computer version of shopify it disappeared, but when you open it from the phone it is still displayed, this code was added tobase.css, these two are dont have: style.css and theme.css
Hi @saintjan
This is Noah from PageFly - Shopify Page Builder App
Please add this code to your theme.liquid above the to get this solved
Step 1: Online Stores > Themes > More Actions > Edit code
Step 2: click on theme.liquid and paste the code above the
Hope this can help you solve the issue
Best regards,
Noah | PageFly
Try this one.
.header-localization .localization-form {
display: none !important;
}
I hope it help.
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!