No content to show
User Activity
07-18-2024
Hi @TinaPPPP , you'll want to confirm the tag you are removing and make sure that it exactly matches the tag on the product. Copy and paste it if possible
This should be possible in Flow using the Send Admin API Request task and the ProductUpdate mutation.
Hi Peterandersen,
Thanks for reporting this bug, it should now be fixed and all LineItems should be returned in future runs
Did you apply the changes to the workflow before testing?
Looks like the metafield definition has "list of values" selected, which makes this a list of "single_line_text_field" instead of just "single_line_text_field". That's fine, we can fix the workflow by changing the metafield action a little.
1. select...
04-22-2024
Yep, you should be able to do this as part of the automation:
- add a condition that checks for the tag/metafield right before sending the email
- add a step that adds the tag/metafield right after sending the email
Hi Alalani, looks like this is possible using the Run Code action to map the parent color to the variant color names. I found that the color of a variant is under `selected options` in the api.
This would be the structure:
1. condition configura...
04-18-2024
Hey CaddyM, you could add a tag or metafield for the customer when the winback email is sent, and then check if that tag/metafield exists before sending a winback email. This should limit the emails the customers are receiving.
Yes this should be possible using liquid when looping over the line items in the send email action. It would look something like:
{% for lineItems_item in order.lineItems %}
{% if lineItems_item.product.vendor == "some vendor" %}
[the liquid for...
Adding
{% assign quantity = 0 %}
to the top should fix your error.
The line
{% assign quantity = quantity | plus: lineItems_item.quantity %}
is using quantity before it has been assigned any value
In that case you would still need to loop over the variants because it would be a list with 1 element, but can omit the if statement since there is only 1 variant
Hi @jake_mitchell
Flow does not currently have an action for applying a compare at price (see all available actions here)
There is a `Send Http Request` action that can be used to perform most actions in the Shopify Admin REST API. The specific ...
My Accepted Solutions
Subject | Views | Posted |
---|---|---|
522 | 04-23-2024 11:44 AM | |
590 | 04-18-2024 04:38 PM | |
844 | 04-10-2023 03:53 PM | |
626 | 08-17-2022 10:32 AM |