VirtueMart Forum

VirtueMart 2 + 3 + 4 => Templating & Layouts => Topic started by: esanchez1091 on July 03, 2012, 03:36:47 AM

Title: how to remove the category label in the frontpage of VM?
Post by: esanchez1091 on July 03, 2012, 03:36:47 AM
HI, Everyone

this was a very easy thing to do in VirtueMart 1.9 i would to know if someone can guide me to remove the label Categories in the frontend of VirtueMart 2.0.8 but the structure is very different on the latest version..

thanks

Title: Re: how to remove the category label in the frontpage of VM?
Post by: Rajiii4u on July 03, 2012, 13:19:35 PM
.category-view .row .category .spacer h2 a{ font-size:0px; }

css overwrite...
Title: Re: how to remove the category label in the frontpage of VM?
Post by: srajca on July 03, 2012, 23:31:50 PM
@esanchez1091
are you trying to remove title, or name or categories? If the first two, then use the solution stated above - css override
Title: Re: how to remove the category label in the frontpage of VM?
Post by: esanchez1091 on October 11, 2012, 03:50:35 AM
i found a simple solution for this using VirtueMart 2.0.12b (stable)



www.yoursite.com/components/com_virtuemart/assets/css/vmsite-ltr.css

go to line 55 and change this line of code .category-view h4{font-size:14px;margin:0;padding:0;}

to the following .category-view h4{font-size:14px;margin:0;padding:0; display:none;}

this remove the label in virtuemart frontpage.
Title: Re: how to remove the category label in the frontpage of VM?
Post by: PRO on October 11, 2012, 21:58:16 PM



views/virtuemart/tmple/default_categories.php

REMOVE
    <h4><?php echo JText::_('COM_VIRTUEMART_CATEGORIES') ?></h4>

BUT do a template override
http://forum.virtuemart.net/index.php?topic=90935.0