Hello,
I was wondering if there is any flow able to automatically Hold Fulfilment of order including preorder items.
Thanks,
Martina
Hello,
I was wondering if there is any flow able to automatically Hold Fulfilment of order including preorder items.
Thanks,
Martina
Probably, but usually pre-orders are managed through an app and apps handle pre-orders differently. What is unique about items that are pre-order? You can use Flow to check for that unique thing and place a hold.
Hello Paul,
thank you for answering.
Yes we use an app already, SplitOrder, to separate preorder items from available to sell ones. In this way the order is split in 2 new orders, one can be fulfilled the other one I would like to hold it.
Why do I want to hold it?
To avoid our external warehouse to receive it when importing orders directly from Shopify.
Is there any feature in Flow able to hold the new order created from the app containing the Preorder item?
Thanks,
Martina
Iâm not an expert in SplitOrder so not sure. Itâs possible you could check the source of the order using the order / app / name field, but it depends on how they do that split (the other part of the order may also appear to come from SplitOrder). If the product has a âpre-orderâ tag or something like that, you could also check for that (order / lineItems / product / tags)
Hello Paul,
yes, the product contains the word Preorder in its name and the SplitOrder App is automatically tagging orders containing this products.
I was wondering if with Flow there was a feature similar to this one, setting a rule by which if an Order contains a preorder product name, automatically the order fulfilment moves to the On Hold status.
You build a workflow in Flow that does something like:
You could also substitute checking if at least one order / lineItems / title includes âpreorderâ for #2.
Obviously youâll need to enter the exact string used in the tag or title
Hey @Marty_HS ! (And to anyone else that found this through search
)
If you use a preorder app, itâs most likely that the app wonât be able to place the entire order on hold if it contains a preorder product. It is technically possible, but requires a few other integrations on the app developerâs part. Regardless of whether the app supports it or not, you can definitely do it with Shopify Flow.
I came across this because one of our merchants wanted to hold the entire order since they didnât want their shipping team to ship the order twice - once for in-stock and again for preorder. The suggested solution should work and I tested it out real quick with a flow on my test store. Attached a screenshot of it, but hereâs the steps -
You can add any type of condition depending on the app. Thanks again for the solution!