Are shopify ever going to add the ability to hide landing pages, blogs and collections per market?

We have 1 store that using markets is split by UK, US and CA.

Within this store we have multiple landing pages, blogs and collections that are specific to each market that cannot be translated.

Its very frustrating as it has the potential to cause cannibilisation in places, which could really hurt our SEO performance.

We need to option to hide these pages per market exactly like we have on products.

Are shopify ever going to release it or do I need to look for an app or dev?

Hey @Ali_parr,
Thanks for Bringing this Question to Shopify community.
In order to hide the specific pages for the specific markets then it’s definitely possible.
All we need to do is custom code in the theme.liquid by targeting their ISO code.
Please follow these steps to do this.
Go to Shopify Admin >> Online Store >> Themes >> Edit Code >> theme.liquid
In the theme.liquid file search for the starting of the body tag.
In the above of the body tag paste the following code.
You can customize the selector based on your need.

{% if localization.market.iso_code == 'US' %}
<style>
.blog-landing-page {
display: none;
}
</style>
{% endif %}

You can even add the script for the specific market.
If you need more assistance then please share the detail along with the 4 digits collab code in the p/m.
Thanks

We have the ability remove products from a market. I’m currently experiencing the pain of not being able to remove a collection from a market.

Shopify is not supported for hiding this collection or blog type by market in the same way as products. The easiest workaround is to use a geolocation/market targeting app to limit visibility. Otherwise, custom liquid states may be introduced to hide content by market, without this having an impact on SEO. Hope this helps you.