Remove language button in header

Hi, please help I want to remove the language button EN/ES only from the header because there is one on the menu on the left. The website is www.sentientthebrand.com - thanks for the help!

@Adri_1 ,

Step 1. Go to Admin β†’ Online store β†’ Theme > Edit code

Step 2. Find the file theme.liquid.

Step 3. Add this code above


Result:

If it helps you, please like and mark it as the solution.

Best Regards :heart_eyes:

Hi @Adri_1

I cannot see that button on your header. Did you solve it?

Hello @Adri_1

You can add code by following these steps

  1. Go to Online Store β†’ Theme β†’ Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

form#FooterLanguageFormNoScript-sidebar { display: none !important; }

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.

Hello @Adri_1

Go to online store ---------> themes --------------> actions ------> edit code------->assets-----> base.bundle.css
add this code at the end of the file.

#SectionSidebar #FooterLanguageFormNoScript-sidebar {
display: none !important;
}

result

If this was helpful, hit the like button and accept the solution.
Thanks

Hi @Adri_1

Just like to clarify, which one you like to remove? The header EN/ES or the footer? Anyway you can choose to the code below.

From you Admin page, go to Online Store > Themes

Select the theme you want to edit

Under the Asset folder, open the main.css(base.css, style.css or theme.css)

Then place the code below at the very bottom of the file.

aside#SectionSidebar .uppercase {
    display: none;
}

For the header. And save.

Result:

footer .uppercase {
    display: none;
}

For the Footer, And Save.

Result:

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