VirtueMart Forum

VirtueMart 2 + 3 + 4 => General Questions => Topic started by: z-analysts on May 05, 2013, 22:34:29 PM

Title: Why does the manufacturer product display page show all categories?
Post by: z-analysts on May 05, 2013, 22:34:29 PM
Here is an example of my manufacturer product display page - http://zclientdev.net/solfairtrade/artisans/aaan/manufacturer/aaan

Why are there product categories displayed on the page of manufacturer products? I would like to see the manufacturer description and products on a single page like VM 1.x used to have! Is that possible?

Joomla 2.5.11
VM 2.0.20b
PHP 5.3.16

Thank you.
Title: Re: Why does the manufacturer product display page show all categories?
Post by: K&K media production on May 06, 2013, 14:52:11 PM
It is the category view. You can make a template override and delete the view of categories or use css in your template to hide the category view on all sites:

div.category-view {
   display: none;
}
Title: Re: Why does the manufacturer product display page show all categories?
Post by: z-analysts on May 06, 2013, 16:15:23 PM
Thank you! I like the CSS option!