I tried changing "Sublayouts for products in category" to "products_horizon" but that affects my home page's featured products. Any easy solution?
VirtueMart 3.0.11.4
I guess you will need to edit & override components/com_virtuemart/views/manufacturer/tmpl/default.php to be able to specify horizon just for the manufaturer page.
VM3.0.11.4 was a test/development vesion. Even numbered versions are stable, VM3.0.12 is the current stable.
Thank you, added the following code at line 109 -
if (strpos($url,'manufacturer') !== false) { $this->productsLayout = 'products_horizon'; }