We want to enhance our product browse flow by creating branches for specific high volume SKUs. In the email we are only pulling in one product because our customers typical behavior is to browse a lot of products so the email would be too long if we pulled in all of them.
We want to create the email for products that include the word “Linen.” The product name is the “event.name” in Klaviyo.
I created the branch in the flow using a conditional statement if users browsed a product that contained “Linen”. Now I need to ensure that the Linen product they browsed is the main product we’re pulling in the email. Since many users are browsing multiple SKUS, we want to prioritize the Linen SKU
I tried using this and it didn’t work:
{% if ‘linen’ in event.name %}
Show Linen product
{% endif %}
Anyone else have ideas?