Solved

Why doesn't Klaviyo accept the Shopify tag from my custom Order metric?

  • 17 June 2022
  • 2 replies
  • 212 views

Badge +3

Hi all,

 

For my client I created a Shopify Flow. It triggers when a customer returns a product and adds the note ‘returned’. It then triggers an event in Klaviyo: ‘Returned Order by Shopify’. The event/metric is being created, but no event properties are being pushed through, making it rather useless. I would like to add the following properties: Item Image, Item Name, Item URL, Quantity, Price and the Cancel Reason. Does anyone know how to code this properly so the events are being pushed to Klaviyo. It would be most appreciated. The customer properties are empty, as we do not need these.

 

 

When I only add the following:

{
"Cancel Reason":"{{refund.order.cancelReason}}"

}

It does push through a property, but it’s empty..

 

 

If someone has knowledge of this and wants to give it a go:

 

{

"Cancel Reason":"{{order.cancelReason}}”,

"Item Image":"{% for refundLineItems_item in refund.refundLineItems %}

  {{refundLineItems_item.lineItem.image.url}}

{% endfor %}",

"Item Name":"{% for refundLineItems_item in refund.refundLineItems %}

  {{refundLineItems_item.lineItem.name}}

{% endfor %}",

"Item URL":"{% for refundLineItems_item in refund.refundLineItems %}

  {{refundLineItems_item.lineItem.product.onlineStoreUrl}}

{% endfor %}",

"Quantity":"{% for refundLineItems_item in refund.refundLineItems %}

  {{refundLineItems_item.quantity}}

{% endfor %}",

"Price":"{% for refundLineItems_item in refund.refundLineItems %}

  {{refundLineItems_item.priceSet.presentmentMoney.amount}}

{% endfor %}"

}

 

 

 

 

icon

Best answer by Taylor Tarpley 17 June 2022, 21:47

View original

2 replies

Badge +3

 

The strategy proposes here doesn’t do the trick either: https://help.klaviyo.com/hc/en-us/articles/360014410811--Shopify-Flow-and-the-Klaviyo-Connector-Explained 

Userlevel 7
Badge +60

Hi @Karsvdv,

 

Thanks for sharing your question with us! Happy to help! 

 

Do you mind sharing why you’ve created a custom event through the Shopify Connector vs. using Shopify’s in-house metric of ‘Refunded Order’ to which you could attach a Shopify tag? Klaviyo intakes three different kinds of Shopify tags into Klaviyo:

  1. Shopify Tags - Tags applied to the customer profile in Shopify
  2. Order Tags - Applied to Shopify Orders (which could be used in your case)
  3. Product Tags - Applied to Shopify Products

 

Unfortunately, since this is a custom event you’ve created, neither Support nor Community can help troubleshoot here, however, it does seem like something is incorrect in the syntax or definition of the tag that I would investigate further. However, if you’re not able to discover the solution and still would like to use this custom vs. the in-house metric, I would reach out to one of our Klaviyo partners to help find a solution for you! 

 

Thanks for participating in the Community!

-Taylor 

Reply