Hi @cbzhu ,
The issue may likely be because the new segment-triggered flow doesn’t have access to the same event data as the winback flow. The winback flow may be event-triggered, meaning it automatically pulls past purchase data from the "Placed Order" event, while the segment-triggered flow doesn’t work the same way. Since segment-triggered flows don’t always include event data, the product details might not be available, causing the section to break. To fix this, check if the dynamic tags like {{ item.product.images.0.src }}
are actually pulling data in the preview. If they aren’t, the flow might not be referencing an event with purchase history. You can try using profile properties like "Ordered Product" instead, if that data is stored in the customer profile. Another option is to trigger the flow based on an event like "Placed Order" rather than just a segment, ensuring Klaviyo includes past purchase data. If that’s not possible, manually storing the last purchased product in a profile property and pulling from there might work. Testing the flow preview and checking the available data structure will confirm what’s missing. Let me know what you find, and we can re-adjust the approach.