I am creating a template to display recognized products on the homepage, and I would like to control the order of the products.
This is what I am using at the moment to get a collection of products based on the category:
<?php $_productCollection = $this->getLoadedProductCollection(); ?>
There is no specific sorting at all.
When I was going to sort the products, I expected this to work:
<?php $_productCollection = $this->getLoadedProductCollection()->addAttributeToSort('name', 'ASC'); ?>
But there is no difference. What am I doing wrong?
Thank you in advance!
source share