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.
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;
}
Thank you! I like the CSS option!