Media Downloads - Latest 5 classified
i'm looking way set number of media downloads down latest 5 items in classified category.
{module_literature,l,5, filter="classified" itemid="773342"}
this worked show latest 5 media downloads doesn't constrain classification
{module_literature filter="classified" itemid="773342"}
this 1 correctly shows classified items
{module_literature filter="latestclassified" itemid="773342"}
i think need i'm not sure how set number of items displayed.
i've tried couple other variations didn't work @ all, documentation i've been looking @ if helps any.
hi nilla,
one workaround using liquid code fetch module's output in collection , using liquid display first 5 items:
{module_literature filter="latestclassified" itemid="118562" collection="test" template=""}
{% item in test.items| limit:5 %}
<div>
<p>{{forloop.index}}.<img src="{{item.iconurl}}">- <a href="{{item.fileurl}}">{{item.name}}</a> </p>
</div>
{%endfor%}
replace item id actual category id.
More discussions in Developer forum
adobe
Comments
Post a Comment