How to remove the language selection in the shopify site menu?

how to remove the country and language selection in the shopify site menu?

Ideally, a solution to this problem without interfering with the code.

1 Like

Hi @saintjan

Would you mind to share your Store URL website? with password if its protected. Thanks!

1 Like

https://ljk0kxisugedmtur-54888530078.shopifypreview.com

But this is in the mobile version

1 Like

Thank you for the information. 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){
.menu-drawer__localization.header-localization {
    display: none;
}
}
  • And Save.
  • I hope it help.
  • Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
1 Like

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

1 Like

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!