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,
Let's say I have metafields of collection 1 and collection 2 on products. How can I use flow to check for those metafields and if they exist, add the product to those collections? I see the option to manually add the collection but not to automate it with metafields. Thanks!
Solved! Go to the solution
This is an accepted solution.
You can just define the collection based on those metafield values.
This is an accepted solution.
If you want to run bulk updates manually, you could start with a Scheduled time trigger and a Get product data action. Then you'd want to define conditions that evaluate the returned products for the desired metafield value and start a For each loop that executes an Add product to collections action for each product and adds it to the relevant collection.
Here's an illustrative example:
This is an accepted solution.
You can just define the collection based on those metafield values.
This is an accepted solution.
If you want to run bulk updates manually, you could start with a Scheduled time trigger and a Get product data action. Then you'd want to define conditions that evaluate the returned products for the desired metafield value and start a For each loop that executes an Add product to collections action for each product and adds it to the relevant collection.
Here's an illustrative example:
Thank you!