
A few merchants have asked us now to remove this without having to remove all of the markets from their admin market settings. If there was a toggle or an option to show it in the header/footer instead, this might be a nice option.

For anyone wanting to do this before a feature is included to allow it within the theme settings, please refer to the following instructions:
The selector populates into the theme depending on your Markets settings within your Shopify admin. And while it’s generally beyond our scope to provide code changes - I do have a small snippet of code that will help get rid of this selector without having to change your markets!
.drawer-menu__form#localization_form li:nth-of-type(2) {
display: none;
}-Click Save
Unfortunately this piece of code also hides any second item in the language menu… therefore it solves a problem on the one hand but it creates a new one on the other.

Hi there, this small tweak to the shared code should fix that up:
.drawer-menu__form#localization_form > li:nth-of-type(2) {
display: none;
}