Skip to content

Instantly share code, notes, and snippets.

@etagwerker
Last active May 24, 2016 17:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save etagwerker/6f899b72249a51655233aaba0c57eed6 to your computer and use it in GitHub Desktop.
Save etagwerker/6f899b72249a51655233aaba0c57eed6 to your computer and use it in GitHub Desktop.
Destacar productos con categoría Envío Gratis
<!-- show.liquid -->
<div id="cart-form">
{% if product | has_category: 'Envío Gratis' %}
<h1 class="jumbo">{{ product.name }}</h1>
{% else %}
<h1>{{ product.name }}</h1>
{% endif %}
<p class="prices">
<span class="price selling">{{ product.price_with_currency }}</span>
</p>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment