Allowed variable name for tag to use in tagged_with - CrystalCommerce Liquid Documentation for Designers

Allowed variable name for tag to use in tagged_with

You can now use a variable name in the tagged_with block:

{% assign tagname = 'Hot Sellers' %}
{% tagged_with tagname do products %}
  <table border="0" class="invisible-table" width="100%">
    {% include 'product' with products %}
  </table>
{% endtagged_with %}