clare485
10/11/2013 - 3:03 PM

You need to edit the template file catalog/product/list/related.phtml and limit the loop to only iterate through 3 products. For example:

You need to edit the template file catalog/product/list/related.phtml and limit the loop to only iterate through 3 products.

For example:



    ...
    <?php $i = 0; ?>
    <?php foreach($this->getItems() as $_item): ?>
        <?php if($i++ == 3) break; ?>