Remove (language)

Topic summary

A user seeks to remove the word “Language” from their website footer at www.stitchesdxb.ae.

Multiple solutions provided:

  • CSS approach (most common): Add display:none styling to hide the language label. Contributors suggest targeting h2#FooterLanguageLabel or .footer_localization h2 in various CSS files (base.css, section-footer.css, or via custom style tags in theme.liquid).

  • Template editing approach: One contributor recommends locating and commenting out the “FooterLanguageLabel” code directly in the footer.liquid file for a cleaner solution that can be reversed if needed.

Implementation steps consistently include:

  1. Navigate to Online Store → Themes → Edit Code
  2. Either add CSS code to hide the element or modify the footer template file
  3. Save changes

All solutions appear viable, with contributors providing screenshots demonstrating expected results. The discussion remains open with multiple accepted solution options available.

Summarized with AI on November 6. AI used: claude-sonnet-4-5-20250929.

How can i remove the word Language from here in the footer?

Website is

www.stitchesdxb.ae

2 Likes

Hi @stitchesdxb ,

Please follow the steps below to implement the solution:

  1. In your Shopify admin, navigate to Online Store under Sales Channels. Click the three dots next to the theme you want to edit, and select Edit Code.

  1. Locate the main CSS file in your theme, such as main.css, theme.css, base.css, or style.css, It would be 'base.css ’ here since you are using dawn theme and add the following CSS code:
h2#FooterLanguageLabel {
display: none;
}

Result:

I hope this helps! If it does, please like it and mark it as a solution!

If you need further assistance, feel free to reach out!

Regards,
Sweans

1 Like

Hello @stitchesdxb

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

h2#FooterLanguageLabel { display: none !important; }

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

1 Like

Hello @stitchesdxb
Go to online store ---------> themes --------------> actions ------> edit code------->assets-----> section-footer.css
add this code at the end of the file.

.footer__localization h2 {
display: none !important;
}

result

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

1 Like

@stitchesdxb Please follow the below steps to remove the text “Language” title from the footer section. Let me know whether it is helpful for you.

  1. From admin, Go to “Online Store” → “Themes”
  2. Click “Edit code” button in the current theme like in the below attached screenshot.

  1. Search and locate “footer.liquid” file and search for “FooterLanguageLabel” code, like in the below attached screenshot.

  1. Comment the code like in the below attached screenshot. I have also share the commented code below for your reference. You can uncomment it if you want to show in future.
    Commented code:

  1. Final results will be like,

Please provide your support by click “Like” and “Accepted” if our solution works for you. Thanks for your support.

1 Like