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)
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) {
Thank You! Now it's ok
You are welcome.