Created
August 2, 2019 11:50
-
-
Save stilliard/0a5a1080722105a42784850ae96c986c to your computer and use it in GitHub Desktop.
Page sub category lists in REC
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% include "html/helpers/sub-categories-list.html.twig" with {'parent': page.products_shown_cat_id } %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% set subCategories = api('categories', { parent: parent } %} | |
{% for category in subCategories %} | |
<a href="{{ category.link }}">{{ category.name }}</a> | |
{% endfor %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment