Would you like to exclude products that are free from a dynamic product feed? You can do this by editing the liquid of the dynamic feed.
Select the dynamic row in the email
In the right-hand menu under ‘dynamic content’, open the display condition by clicking on ‘edit’
To exclude free products from the feed, you need the following code:
Before:
{% if product.price > 0 %}
After:
{% endif %}{% endfor %}
This adjustment will then look like this:
{% for product in last_ordered_products_collection_array %}{% if product.price > 0 %}