Struggling here. I want to show only products that contain “Tires” in the title for the product in the email, as it’s for a specific item
The problem is that right now it is showing multiple other items they added, not just that item
I have a filter within the table for the text on the side: (the success is a placeholder)
{% if 'Tires' in event.ItemNames %}
<div>Success</div>
{% endif %}
But it seems to be working off on complete match, not partial match as the title contains more than just Tires
How can I get it to only show items that have Tires in the name, and only show one item? I can’t slice this to just show the first item as it will most likely be a different item in the way the data comes over.