Friday, December 21, 2012

{ Storenvy Tutorial } - Hide Tags From Product Pages


By default, the tags link to the Storenvy-wide search page for that keyword. If you don't want the tags to appear on the page, go to the Product page template and delete this code:

{% if product.tags != blank %}
  <ul id="tags">
    {% for tag in product.tags %}
    <li class="tag">
      <a href="{{tag.storenvy_search_url}}" title="Search Storenvy for {{tag.name}}.">{{ tag.name }}</a>
    </li>
    {% endfor %}
  </ul>
{% endif %}