collection - aareano/ifshop-wiki GitHub Wiki

This drop is corresponds to Shopify's.

additional properties

  • collection.shop

missing properties

  • collection.all_types
  • collection.current_type
  • collection.current_vendor
  • collection.next_product
  • collection.previous_product
  • collection.tags


collection.all_tags

Returns an array of all product tags in the collection.


collection.all_products_count

Returns the number of products in a collection. collection.all_products_count will return the total number of products even when the collection view is filtered.

In comparison, collection.products_count returns all tags for a collection for the current view. For example, if a collection is filtered by tag, collection.products_count returns the number of products that match the current filter.

Input

{{ collection.all_products_count }} total products in this collection

Output

24 total products in this collection

collection.all_vendors

Returns a list of all product vendors in a collection.

Input

{% for product_vendor in collection.all_vendors %}
  {{ product_vendor | link_to_vendor }}
{% endfor %}

Output

<a href="/collections/vendors?q=Shopify" title="Shopify">Shopify</a>
<a href="/collections/vendors?q=Shirt+Company" title="Shirt Company">Shirt Company</a>
<a href="/collections/vendors?q=Montezuma" title="Montezuma">Montezuma</a>

collection.default_sort_by

Returns the sort order of the collection, which is set on the collection's page in your Shopify admin.

Collection sorting The possible sort orders are:

  • manual
  • best-selling
  • title-ascending
  • title-descending
  • price-ascending
  • price-descending
  • created-ascending
  • created-descending

collection.description

Returns the description of the collection.


collection.handle

Returns the collection's handle.


collection.id

Returns the ID number of the collection.


collection.image

Returns the collection image. Use the img_url filter to load the image file from the Shopify content delivery network (CDN). Use an if tag to check for the presence of the image first.

Input

{% if collection.image %}{{ collection.image | img_url: 'medium' }}{% endif %}

Output

//cdn.shopify.com/s/files/1/0087/0462/collections/collection-image_medium.png?v=1337103726

collection.products

Returns all of the products in a collection.

Input

{% for product in collection.products %}
    {{ product.title }}
{% endfor %}

Output

T-shirt
Hammock
Lawn Chair

collection.products_count

Returns the number of products in a collection that match the current view. For example, if you are viewing a collection filtered by tag, collection.products_count will return the number of products that match the chosen tag.

Input

{{ collection.products_count }} products

Output

6 products

collection.published_at

Returns the date and time when the collection was published. You can set this information on the collection's page in your Shopify admin by the Set publish date calendar icon.

You can use a date filter to format the date.


collection.shop

Defined for the following events:

  • a collection is created
  • a collection's product list changes
  • a collection is deleted

Returns the shop drop.


collection.template_suffix

Returns the name of the custom collection template assigned to the collection, without the collection. prefix or the .liquid suffix. Returns nil if a custom template is not assigned to the collection.

Input

{{ collection.template_suffix }}

Output

no-price

collection.title

Returns the title of the collection.

Input

<h1>{{ collection.title }}</h1>

Output

<h1>Frontpage</h1>

collection.url

Returns the URL of the collection.

⚠️ **GitHub.com Fallback** ⚠️