Hello!
I have been trying to completely get rid of a section below the footer of my website. It shows a Country and Language selector that is unnecessary and is unrelated to the “Enable country/region selector” option that shows up when customizing my theme.

I use the Dawn theme.
Edit: store link
Thank you!
1 Like
Hi @Eduardo1 ,
Could you kindly provide us with your store URL and, if applicable, the password, so that our team can offer you the necessary support?
Hi @Eduardo1
It may be the case that it is hardcoded in your code, please footer.liquid or similar file and check for locale-selectors__container and remove that form and container from there
Thanks!
1 Like
Hi @Eduardo1
Check this one.
- 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.
.locale-selectors__container {
display: none !important;
}
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
1 Like
Hi @pawankumar ,
Thanks for replying.
I’ve checked the footer.liquid file but couldn’t find anything like that. Do you know what other similar files I could search on?
Thanks
Hi @Made4uo-Ribe ,
Thank you for the suggestion! It works, but I really wanted to delete this instead of hiding it. Do you have any other suggestions?
Removing this might be tricky, you would need a developer to delete this completely to make sure the codes would not affect another area. That is why we only hiding it. But it will be hide, as long you didnt make it visible.
1 Like
You can check theme.liquid file,
If it still not there there in bottom there can be some snippet included in theme.liquid or footer.liquid
So you can look for render or include and then you will find file name there and you can search for that file,
If it helps you, please like and accept the solution
Thanks
1 Like