Hide page(s) based on geolocation/ market

I have found a hacky way to achieve hiding elements in the navigation based on the localization and Markets.

  1. The element we want to hide has to be added to the navigation

  2. In Localize app choose Market in which you want to hide the element

  3. The label of the element we want to hide in this market will be a CSS code

  4. <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?