OK thanks for the tips. That seems an option. If you both recommend to edit the templates then I would rather do that option.
In products_list.tpl we currently have:
HTML Code:
{$product.product|escape}
How would I change this to insert the manufacturer name beforehand. I can of course display the manufacturer ID itself by doing this:
HTML Code:
{$product.manufacturerid} {$product.product|escape}
And the following wouldn't work!
HTML Code:
{$product.manufacturer} {$product.product|escape}
I guess that I'm not far away? Thanks.