Added product.manufacturer_sku
Added product.manufacturer_sku
Added the manufacturer_sku
attribute to the product drop.
Added the manufacturer_sku
attribute to the product drop.
Page drops now return an array of meta_tag
drops via the meta_tags
method. Those drops expose name
and content
fields.
Store locations can be defined in the admin. You can then loop through those locations in liquid from the site drop using site.store_locations
.
Added the buylist
flag to the tagged_with
block, which will tag the products as if you were browsing in buylist mode.
You can now specify the root category for the tree with root_id
:
{% cached_category_tree root_id:8 do category %} {% endcached_category_tree %}
This will only render the Magic Singles category tree.
category.layout
), so now you can create a custom layout if needed. You can now search for arbitrary products with the find_products block:
{% find_products name_includes:'Lightning Bolt' in-stock do products order:sell_price reverse %} <table border="0" class="invisible-table" width="100%"> {% include 'product' with products %} </table> {% endtagged_with %}
You can now use a variable name in the tagged_with block:
{% assign tagname = 'Hot Sellers' %} {% tagged_with tagname do products %} <table border="0" class="invisible-table" width="100%"> {% include 'product' with products %} </table> {% endtagged_with %}
You can now call recaptcha_tags on the site drop, which is available on every page. You can use this to add a user signup form on any page, for example.
{{ "recaptcha.please_verify_your_humanity" | trans }} {{ site.recaptcha_tags }}
You can now load an arbitrary page (for sidebar content, etc) by seoname with the load_page
block:
{% load_page 'events' do page %} Title: {{ page.title }} Content: {{ page.content }} {% endload_page %}