I would like to keep the language selector but remove the currency selector.
It would be great if anyone can help. Thank you.
Topic summary
A user wants to remove the currency selector from the mobile sidebar in the Dawn theme while keeping the language selector visible.
Solution Provided:
- Navigate to: Online Store → Themes → Actions → Edit Code → Assets →
component-localization-form.css - Add the following CSS code at the end of the file:
form#HeaderCountryMobileForm:nth-child(1) {
display: none !important;
}
Status: The solution was provided with a visual demonstration showing the currency selector successfully hidden. The issue appears resolved, pending confirmation from the original poster.
Hello @timmyshe
Please provide the password of your store
Hided
Go to online store ----> themes ----> actions ----> edit code ----> assets ----> component-localization-form.css
add this code at the end of the file and save.
form#HeaderCountryMobileForm:nth-child(1) {
display: none !important;
}
result
If this was helpful, hit the like button and accept the solution.
Thanks
1 Like

