I'm creating a template to display featured products on the home page, and I'd like to control the order of the products.
This is what I'm using at the moment to fetch a product collection based on a category:
<?php
$_productCollection = $this->getLoadedProductCollection();
?>
No specific sorting at all.
When I were going to sort the products, I expected this to work:
<?php
$_productCollection = $this->getLoadedProductCollection()->addAttributeToSort('name', 'ASC');
?>
But there's no difference at all. What am I doing wrong?
Thank you in advance!