Ecommerce categories
This widget is only compatible with Editor version 7.32 and above.
IMPORTANT: This widget will only work as expected when the ecommerce plugin is activated on the user’s account. It will add a list of blog categories to your page that will link to all posts in that category.
Examples
Basic usage
{{widget('ecomcategorieslist', 'productcategories', {})|raw}}}
Example usage
{{widget('ecomcategorieslist', 'productcategories', {
'title': 'Categories',
'showCount', true
})|raw}}
Resulting HTML:
<div id="page-zones__main-widgets__ecomcategorieslistWidget" data-name="ecomcategorieslist" class="widget widget--zone-widget">
<div class="bk-ecomcategorieslist ecomcategorieslist widget__ecomcategorieslist">
<div class="categories-listing widget__categories-listing">
<ul class="categories-list categories-listing__categories-list">
<li class="category-item categories-listing__category-item">
<a class="category-link categories-listing__category-link" href="/store?category=woman">woman</a>
</li>
<li class="category-item categories-listing__category-item">
<a class="category-link categories-listing__category-link" href="/store?category=man">man</a>
</li>
</ul>
</div>
</div>
</div>
Widget options
-
title
: The title of the widget, shown above the list itself. If this is not set if will default to the wordCategories
. -
showCount
: Shows the number of products under each category. Set totrue
to show orfalse
to hide them, if this option isn’t set then they are shown by default.