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.
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!