VirtueMart Forum

VirtueMart 2 + 3 + 4 => Templating & Layouts => Topic started by: sandum150 on October 19, 2013, 12:47:53 PM

Title: Manufacturer's page
Post by: sandum150 on October 19, 2013, 12:47:53 PM
Hello everybody!
When i click "Show all manufacturer's products" on the product details, the products are showing after the category list, like in the screenshot.
Is there a way to show without categories?
VM 2.0.24
Joomla 2.5.14
Regards!
(http://volta.md/images/sampledata/manufacturers.png)
Title: Re: Manufacturer's page
Post by: Jumbo! on October 19, 2013, 14:05:47 PM
Open components\com_virtuemart\views\category\tmpl\default.php

Find the following codes in line 52:

if (VmConfig::get ('showCategory', 1) and empty($this->keyword)) {

Replace above by:

if (VmConfig::get ('showCategory', 1) and empty($this->keyword) and JRequest::getInt('virtuemart_manufacturer_id', 0) == 0) {
Title: Re: Manufacturer's page
Post by: sandum150 on October 21, 2013, 08:45:57 AM
Thank You! Now it's ok
Title: Re: Manufacturer's page
Post by: Jumbo! on October 21, 2013, 14:56:15 PM
You are welcome.