Know the ability to limit the amount of products per page has been on the wishlist for a while, however the only searches I could find relating to this are pre 9.
Has this feature been added?
Has this feature been added?
<actinic:block if="%3cactinic%3avariable%20name%3d%22ContentCategory%22%20%2f%3e%20%3d%3d%20%22Landing%20Page%22%20%26%26%20strlen%28%3cactinic%3avariable%20name%3d%22Disability%22%20%2f%3e%29%3e0" >
<actinic:block php="true" >
$itemno = 0;
$disability = '<actinic:variable name="Disability" encoding="perl" selectable="false" />';
</actinic:block>
<table class="product_list"><tr>
<actinic:block type="EntireSectionList" >
<actinic:block type="ProductList" >
<actinic:block php="true">
if ($itemno < 6 &&
stristr('<actinic:variable name="DisabilityList" encoding="perl" selectable="false" />', $disability))
{
echo "<td>";
echo '<actinic:variable value="Tiny Product" name="ProductLayout" encoding="perl" />';
echo "</td>";
++$itemno;
if (($itemno % 3) == 0)
{
echo "</tr><tr>";
}
}
</actinic:block>
</actinic:block>
</actinic:block>
</tr></table>
</actinic:block>
Comment