News:

You may pay someone to create your store, or you visit our seminar and become a professional yourself with the silver certification

Main Menu

hiding/removing manufacturer to customers on product page

Started by musicarvind, October 31, 2012, 10:10:56 AM

Previous topic - Next topic

musicarvind

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

bytelord

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
Production: Joomla 2.5.8 | VM 2.0.14 | PHP 5.3.13
Testing     : Joomla 2.5.8 | VM 2.0.16 | PHP 5.3.8
Testing     : Joomla 2.5.8 |    VM 2.1   | PHP 5.3.8

- Don't Forget to mark thread as solved when it is solved!
- Please do not PM with support questions, use the forum!

musicarvind

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.