Remove (language)

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