Shopify Flow is an ecommerce automation platform that enables you to automate tasks and processes within your store and across your apps.
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hi,
I am trying to create a flow that tags pre-order orders with 'pre-order' but it does not work. Does anyone have a solution or a better way?
Thanks.
Solved! Go to the solution
This is an accepted solution.
This view only shows part of the condition due to space reasons. It looks like you are using "Name" and "Title" but not sure if that's from the order or a product?
Personally I wouldn't do it this way as it's labor intensive to add more pre-order things to Flow. Instead I would add a tag to each product (or a metafield if they have to be variant level) and then check that product tag this condition. If would be much simpler, something like:
if order / lineItems / product / tags is at least one of "preorder"
This is an accepted solution.
This view only shows part of the condition due to space reasons. It looks like you are using "Name" and "Title" but not sure if that's from the order or a product?
Personally I wouldn't do it this way as it's labor intensive to add more pre-order things to Flow. Instead I would add a tag to each product (or a metafield if they have to be variant level) and then check that product tag this condition. If would be much simpler, something like:
if order / lineItems / product / tags is at least one of "preorder"
This makes much more sense!! Thank you so much!