modifiers on taxonomy term listing #7090
Unanswered
fredbouin
asked this question in
Troubleshooting
Replies: 2 comments 3 replies
-
{{ {taxonomy:product_collection} | pluck:title | sentence_list }} |
Beta Was this translation helpful? Give feedback.
0 replies
-
thanks @jasonvarga, What I am actually doing is a bit more complex. I'm looping through the {{ taxonomy:product_collection as="expand" }}
{{ expand }}
{{ entries }}
{{ type }}
{{ title }}
{{ /type }}
{{ /entries }}
{{ /expand }}
{{ /taxonomy:product_collection }} I thought the simple version I posted before would give me the tools I need to work on this but I'm not figuring out the syntax for this scenario. I would think something like this maybe. {{ taxonomy:product_collection as="expand" }}
{{ expand }}
{{ entries }}
{{ type | pluck:title | sentence_list }}
{{ /entries }}
{{ /expand }}
{{ /taxonomy:product_collection }} but that does not work. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
How do I modify a taxonomy term list, let's say I have:
and want to display it as a sentence list for example. adding
| sentence_list
to title ortaxonomy:product_collection
doesn't work.Beta Was this translation helpful? Give feedback.
All reactions