Hello,
I have about 50 manufacturers with link the list of all manufacturers. Now when I click the logo or the h2 name of the manufacturer page - the VM system load detail page of the manufacturer with description and logo. I need the main page of all manufacturers to load direct the products list of the manufacturer, not the details page. How can I achieve this?
Change PHP file for manufacture module and change URL for this - URL will be as category page with manufacture ID as parameter in URL
Thank you, I did it. So, if you want to change the Manufacturers page to load direct the products, not the details page must do that:
Change the file components/com_virtuemart/views/manufacturer/tmpl/default.php ot make your own override in your template_folder/html/com_virtuemart/manufacturer
and edit this row: <?php echo $manufacturerURL; ?>
with this: <?php echo $manufacturerIncludedProductsURL; ?>
It work fine for me 8)