You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

14 lines
515 B

{% if products %}
<h2 class="widget-title">{{ title }}</h2>
<ul class="wcml_removed_cart_items">
{% for product in products %}
<li rel="{{ product.id }}" >
<a href="{{ product.url|raw }}">
{{ product.title|raw }}
</a>
</li>
{% endfor %}
</ul>
<a href="" class="wcml_removed_cart_items_clear">{{ clear }}</a>
<input type="hidden" id="wcml_clear_removed_items_nonce" value="{{ nonce|raw }}" />
{% endif %}