We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In Shopify markets, you can exclude products from being sold.
This means for example, that all products from brand A is not available at store.no, but available at store.com
At store.com, you can a menu link for brand A. But you don't want to have a menu link for brand A on store.
In Dawn it is not possible to have a menu per market, or exclude some of the items based on market.
Hack solution:
Allow merchants to render menus conditionally on request.host, I can add a if request.host contains ".no" for example and render different menus.
Platform solution:
collection's should be able to publish per market, and it should be possible to do something like
for menuItem in menu if menuItem not in market skip
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In Shopify markets, you can exclude products from being sold.
This means for example, that all products from brand A is not available at store.no, but available at store.com
At store.com, you can a menu link for brand A. But you don't want to have a menu link for brand A on store.
In Dawn it is not possible to have a menu per market, or exclude some of the items based on market.
Hack solution:
Allow merchants to render menus conditionally on request.host, I can add a if request.host contains ".no" for example and render different menus.
Platform solution:
collection's should be able to publish per market, and it should be possible to do something like
for menuItem in menu
if menuItem not in market
skip
The text was updated successfully, but these errors were encountered: