News:

Support the VirtueMart project and become a member

Main Menu

Manufacturer's page

Started by sandum150, October 19, 2013, 12:47:53 PM

Previous topic - Next topic

sandum150

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!

Jumbo!

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) {

sandum150


Jumbo!