VirtueMart Forum

VirtueMart 2 + 3 + 4 => General Questions => Topic started by: kostianev on December 01, 2020, 13:18:06 PM

Title: [SOLVED] How to link the manufacturers page to load the manufacturers products?
Post by: kostianev on December 01, 2020, 13:18:06 PM
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?
Title: Re: How to link the manufacturers page to load direct the manufacturers products?
Post by: pinochico on December 01, 2020, 15:30:02 PM
Change PHP file for manufacture module and change URL for this - URL will be as category page with manufacture ID as parameter in URL
Title: Re: How to link the manufacturers page to load direct the manufacturers products?
Post by: kostianev on December 02, 2020, 10:39:50 AM
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)