Magento 1.9 – How to Set Related Products Count

magento-1.9

If this is a dumb question, apologies – but I'm putting related products on a product, I've moved it from the side bar to the main content area.

All is going well, but its displaying 4 products, I want to show 5.

I found this:

https://stackoverflow.com/questions/16482486/how-to-display-only-3-related-product-on-product-view-page-magento

And none of the options in there work.

Not sure if I'm missing anything hilariously simple, but wondering if anyone had any ideas. Incidentally I don't want to install a plugin/module or whatever for this. Just call 5 products rather than 4.

Thanks, help would be immensely appreciated.

Best Answer

I know this method

Mage::registry('current_product')->getRelatedProductIds();

You can make a condition using:

count(Mage::registry('current_product')->getRelatedProductIds());

in app/design/frontend/base/default/template/catalog/product/list/related.phtml

Remember to copy the basis for your theme.

Related Topic