I know Matrixify does this just wondering, how and if we can do it conditionaly or permenantly?
Issue we run into is we have a setup where we need to split an order into many orders in Shopify, and we don’t wanna send multiple notification but only one.
or just disable them at all, and we use ERP to send them thanks.
Hi Blanklob,
If you’re using the orderCreate
mutation to create orders, you should be able to set sendReceipt
to false
- but you can’t disable all order notifications when a purchase is being made as usual through the online store.
So you could let the first order notification be send as per usual and then if you’re splitting the order up into new orders with the
orderCreate
mutation, you could disable those notifications.
Would that work for you?
Thats perfect ! i just saw that thanks.