VirtueMart Forum

VirtueMart 2 + 3 + 4 => Templating & Layouts => Topic started by: musicarvind on October 31, 2012, 10:10:56 AM

Title: hiding/removing manufacturer to customers on product page
Post by: musicarvind on October 31, 2012, 10:10:56 AM
Hi everyone,

When someone clicks on a certain product, it shows Manufacturer with a link to the manufacturer page. I would like to hide manufacturer or take it off the product page. Under configuration on VM, I have unclicked Show Manufacturer in the Templates tab. Would appreciate any help.

Site example which shows "Manufacturer: SL"              http://goo.gl/bViOi
Thank you.

my Joomla Version: 2.57
VM2 version: 2.0.12f
Template used: Colorshop by Linelab.

regards,
arvind

edit: previous short URL didn't work
Title: Re: hiding/removing manufacturer to customers on product page
Post by: bytelord on October 31, 2012, 22:59:45 PM
Hello,

You could edit your custom template or override it and comment that line that print outs the manufacturer. The easiest way is yo hide it by override vm css:

.productdetails-view .manufacturer {
display:none;
}

easy...

Use firebug to examine you site code and css styling: http://forum.virtuemart.net/index.php?topic=102850.0

Some more information about template overrides: http://forum.virtuemart.net/index.php?topic=98505.0
Using the template system: http://dev.virtuemart.net/projects/virtuemart/wiki/Hints_for_the_use_of_the_template_system.

Regards
Title: Re: hiding/removing manufacturer to customers on product page
Post by: musicarvind on November 09, 2012, 03:49:05 AM
Hi bytelord,

Thank you very much for your help and thank you for your recommendation of Firebug. It does indeed assist a whole lot with css.