Skip to content
  • There are no suggestions because the search field is empty.

Latest Snippets

Updating Product Snippets and Displaying Images

If your snippets are outdated, you can update them by overwriting them with the versions listed here.

snippets/spiff-button-design-product.liquid

 {% assign product_object = all_products[product_handle] %}
   
   
 

snippets/spiff-button-standard.liquid

{% assign product_object = all_products[product_handle] %}
   
   
 

snippets/spiff-line-item-image.liquid

                    {% for property in line_item.properties %}
                        {% if property.first == "spiffTransactionId" %}
                             
                            {% assign hasTransactionId = true %}
                        {% endif %}
                        {% if property.first == "previewImage" %}
                            {{ line_item.title }}
                        {% endif %}
                    {% endfor %}
                    {% unless hasTransactionId %}
                        {{ line_item.image.alt | escape }}
                    {% endunless %}