How can I hide / remove the currency selector at the sidebar for mobile? (DAWN)

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.

Summarized with AI on October 30. AI used: claude-sonnet-4-5-20250929.

I would like to keep the language selector but remove the currency selector.
It would be great if anyone can help. Thank you.

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