My review request email pulls in the first item from an order (good), BUT if the first item is a product bundle it’s requesting a review of the bundle itself, rather than pulling in the first item within the bundle (bad). I need individual item reviews so that they populate on both the individual product pages, in addition to them rolling up to their respective bundle product pages. That way customers can see them in both places. More info...
- BUNDLE APP: Shopify Bundles. It creates a single product record for the bundle and then nests the products within the bundle product record
- FLOW TRIGGER: “Eligible for Judge.me Review Request”
- CURRENT VARIABLES: {{ event.products.0.product_title }}, {{ event.products.0.product_image_url }}, {{ event.products.0.review_rating_url }}
- ISSUE: “0." pulls in the top-level product details, which means the bundle product record, not the first item nested in the bundle
- POSSIBLE SOLUTION: Judge.me customer support said to add a “loop” in my Klaviyo email to solve this, but they can’t tell me where to put it and I can’t find anything on Klaviyo to help
- The loop they provided: {% for product in event.products %} {{ product.product_title }} {{ product.product_image_url }} {{ product.review_rating_url }} {% endfor %}
Can anyone confirm that a.) this is in fact the correct approach, and b.) tell me how to add it to my review request emails correctly so that both individual product orders pull in the first item from the order, and for orders with a bundle it pulls in the first product nested in the bundle?
