compatibility
5 years ago
currency-switchers
1 month ago
multi-currency
1 year ago
multilingual
1 year ago
setup
10 months ago
status
1 year ago
store-urls
5 years ago
custom-files.twig
5 years ago
languages-notice.twig
5 years ago
menus-wrap.twig
1 year ago
nav-menus-full.twig
1 year ago
nav-menus-standalone.twig
4 years ago
pointer-ui.twig
1 year ago
removed-cart-items.twig
5 years ago
settings-ui.twig
2 months ago
st-taxonomy-ui.twig
5 years ago
sync-taxonomy.twig
5 years ago
trnsl-attributes.twig
5 years ago
troubleshooting.twig
1 year ago
removed-cart-items.twig
14 lines
| 1 | {% if products %} |
| 2 | <h2 class="widget-title">{{ title }}</h2> |
| 3 | <ul class="wcml_removed_cart_items"> |
| 4 | {% for product in products %} |
| 5 | <li rel="{{ product.id }}" > |
| 6 | <a href="{{ product.url|raw }}"> |
| 7 | {{ product.title|raw }} |
| 8 | </a> |
| 9 | </li> |
| 10 | {% endfor %} |
| 11 | </ul> |
| 12 | <a href="" class="wcml_removed_cart_items_clear">{{ clear }}</a> |
| 13 | <input type="hidden" id="wcml_clear_removed_items_nonce" value="{{ nonce|raw }}" /> |
| 14 | {% endif %} |