Happening now! Exclusive AMA: Streamlining Fulfillment and Delivery with Shopify Experts | Ask your questions to be answered by our team!

Remove (language)

Solved

Remove (language)

stitchesdxb
Excursionist
29 0 7

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

 

Website is 

www.stitchesdxb.ae

Screenshot_20240827_075258_Samsung Internet.jpg

Accepted Solution (1)

goldi1
Excursionist
99 8 23

This is an accepted solution.

Hello @stitchesdxb 

Go to online store ----> themes ----> actions ----> edit code ---->

open ---->assets ------>open---->section-footer.css and in line number 276

you find this code

 

 

.footer__localization h2 {
    margin: 1rem 1rem .5rem;
    color: rgba(var(--color-foreground), .75);
}

 

 

 

replace your code  with this code 

 

 

.footer__localization h2 {
    margin: 1rem 1rem .5rem;
    color: rgba(var(--color-foreground), .75);
    display: none;
}

 

 

 

and result will be

Screenshot 2024-08-27 095010.png

Screenshot 2024-08-27 095310.png

thank you 

Was I helpful?

Buy me a coffee



Want to modify or custom changes or bug fix on store . Or Need help with your store? Or -Want Complete Storefront
Email me -rahul@prowebcoder.com - Skype: live:dhiman.639

View solution in original post

Replies 7 (7)

goldi1
Excursionist
99 8 23

This is an accepted solution.

Hello @stitchesdxb 

Go to online store ----> themes ----> actions ----> edit code ---->

open ---->assets ------>open---->section-footer.css and in line number 276

you find this code

 

 

.footer__localization h2 {
    margin: 1rem 1rem .5rem;
    color: rgba(var(--color-foreground), .75);
}

 

 

 

replace your code  with this code 

 

 

.footer__localization h2 {
    margin: 1rem 1rem .5rem;
    color: rgba(var(--color-foreground), .75);
    display: none;
}

 

 

 

and result will be

Screenshot 2024-08-27 095010.png

Screenshot 2024-08-27 095310.png

thank you 

Was I helpful?

Buy me a coffee



Want to modify or custom changes or bug fix on store . Or Need help with your store? Or -Want Complete Storefront
Email me -rahul@prowebcoder.com - Skype: live:dhiman.639

Sweans
Shopify Partner
394 75 116

 

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.

Sweans_2-1724731544797.png

 


2. 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:

 

Sweans_3-1724731591132.png

 

 

 


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

- Was my reply helpful? Please Like and Accept the Solution or let me know by Buying me coffee!
- Want to modify or custom changes on store Hire me.
- Feel free to contact me at info@sweans.com regarding any help.
- To know more about me check out www.sweans.com

niraj_patel
Shopify Partner
2378 514 511

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 </body> on theme.liquid
<style>
h2#FooterLanguageLabel {
display: none !important;
}
</style>

niraj_patel_0-1724732610514.png

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

Shopify Partner || Helping eCommerce Stores
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution.
- For further discussion contact: Email ID- info@techlyser.com

Sangeetanahar
Excursionist
332 22 51

Hello @stitchesdxb 

Go to online store ----> themes ----> actions ----> edit code ---->assets....>Section.footer.css Add the following code in the bottom of the file

h2#FooterLanguageLabel {
    display: none;
}

Result will be

Stitches-DXB-for-newborns-baby.png

Buy me a Pizza


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

Was I helpful?

Buy me a coffee



Want to modify or custom changes or bug fix on store . Or Need help with your store? Or -Want Complete Storefront
Email me -sangeetarahuldhiman@gmail.com - Skype: live:sangeetarahuldhiman -Whatsapp: +917009811712
Checkout Some Free Sections Here

GTLOfficial
Shopify Partner
449 89 88

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
1.png

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

- Buy me a Pizza
- If helpful then please Like and Accept Solution.
- Want to modify or custom changes or bug fix on the store Hire me. GTL web solutions
- Want Complete Storefront: Send an email ⇨- Email: info@gtlofficial.com - Skype: ritesh_27dh

Vinsinfo
Shopify Partner
396 138 133

@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.
Vinsinfo_0-1724740356759.png
3. Search and locate "footer.liquid" file and search for "FooterLanguageLabel" code, like in the below attached screenshot.
Vinsinfo_1-1724740361583.png

 

4. 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:

 

<!-- <h2 class="caption-large text-body" id="FooterLanguageLabel">
  {{ 'localization.language_label' | t }}
</h2> -->

 

Vinsinfo_2-1724740391123.png

 

5. Final results will be like,
Vinsinfo_3-1724740472885.png

 

Please provide your support by click "Like" and "Accepted" if our solution works for you. Thanks for your support.
Please reach out to bizdev@vinsinfo.com for any enquires related to Shopify.
Our Services: Custom Theme Development, Theme Customization, Custom Feature Implementation, Data Migration, Custom APP Development, Website Optimization and Google Merchant Center Support

goldi1
Excursionist
99 8 23

hey @stitchesdxb 

if  you think i was helpfull could you buy me a coffee ??

Was I helpful?

Buy me a coffee



Want to modify or custom changes or bug fix on store . Or Need help with your store? Or -Want Complete Storefront
Email me -rahul@prowebcoder.com - Skype: live:dhiman.639