I have found a hacky way to achieve hiding elements in the navigation based on the localization and Markets.
-
The element we want to hide has to be added to the navigation
-
In Localize app choose Market in which you want to hide the element
-
The label of the element we want to hide in this market will be a CSS code
-
<style>header .list-menu li:last-child {display:none;}</style>- Target the element you want to hide
It is against accessibility rules, so I wouldn’t advise using it, but it does the trick.
Edit: display:none actually hides it for screen readers as well, so probably it wouldn’t affect Accessiblity
Looking forward for a correct way to achieve that through your app. Is that going to be added in near future?