collection - aareano/ifshop-wiki GitHub Wiki
This drop is corresponds to Shopify's.
collection.shop
collection.all_types
collection.current_type
collection.current_vendor
collection.next_product
collection.previous_product
collection.tags
- collection.all_products_count
- collection.all_tags
- collection.all_vendors
- collection.default_sort_by
- collection.description
- collection.handle
- collection.id
- collection.image
- collection.products
- collection.products_count
- collection.published_at
- collection.shop
- collection.template_suffix
- collection.title
- collection.url
Returns an array of all product tags in the collection.
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
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>
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
Returns the description of the collection.
Returns the collection's handle.
Returns the ID number of the collection.
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
Returns all of the products in a collection.
Input
{% for product in collection.products %}
{{ product.title }}
{% endfor %}
Output
T-shirt
Hammock
Lawn Chair
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
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.
Defined for the following events:
- a collection is created
- a collection's product list changes
- a collection is deleted
Returns the shop drop.
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
Returns the title of the collection.
Input
<h1>{{ collection.title }}</h1>
Output
<h1>Frontpage</h1>
Returns the URL of the collection.