VirtueMart Forum

VirtueMart 2 + 3 + 4 => General Questions => Topic started by: psvialli on November 30, 2016, 11:06:18 AM

Title: Remove Category Name
Post by: psvialli on November 30, 2016, 11:06:18 AM
Hi,

Can someone please advise me how i can remove the "Category Name"  from my pages as i really don't want this to show could not see how to hide it in the config

I have created a vmsite-ltr.css  to hide my Sort order so idealy if i can hide it in that .css as well ?

VM      :  3.0.18
Joomla:  3.6.4.

temp link :-  - http://moon-dream.co.uk/index.php/2015-10-04-22-28-40 

Many thanks for your time 
Title: Re: Remove Category Name
Post by: jenkinhill on November 30, 2016, 11:11:27 AM
Again, you can use css or a template override. Use Firebug to work out what to do.  http://forum.virtuemart.net/index.php?topic=116620.0
Title: Re: Remove Category Name
Post by: psvialli on November 30, 2016, 11:34:00 AM
Many thanks, I have installed firebug and looked at the code but need a little help as confused as to what to hide ?

Sorry very new to this and trying to understand

<div class="browse-view">
<div class="orderby-displaynumber row-fluid">
<div class="span8 floatleft">
<div class="orderlistcontainer">
</div>
<div class="span4 floatright display-number">
<div class="vm-pagination">
<div class="clear"></div>
</div>
<h1>Bracelets</h1>
<div class="row-fluid">
<div class="product floatleft span4 vertical-separator">
<div class="product floatleft span4 vertical-separator">
<div class="product floatleft span4 ">
<div class="clear"></div>
</div>
<div class="vm-pagination">
</div>


All I have in my .css is

.orderby-displaynumber { display:none; } 

which i am using to remove the search.
Title: Re: Remove Category Name
Post by: GJC Web Design on December 01, 2016, 00:33:59 AM
hard to say as your html is incomplete but could be

.browse-view > h1 {display:none;}
Title: Re: Remove Category Name
Post by: Studio 42 on December 01, 2016, 10:54:16 AM
But remember that google search check if elements are hidden , so your H1 is not used anymore for SEO.
Title: Re: Remove Category Name
Post by: psvialli on December 01, 2016, 11:43:37 AM
Thanks all,

Still not managed to hide it so could do with some help , i have taken it out of offline for a bit so someone can advise me on what i need to do to hide this :-
http://moon-dream.co.uk/index.php/2015-10-04-22-28-39

I am trying to hide the  "Category Name" as it really does not look nice there

Any help would be truly appreciated !

thanks
Title: Re: Remove Category Name
Post by: GJC Web Design on December 01, 2016, 12:44:45 PM
 :o

QuoteStill not managed to hide it so could do with some help , i have taken it out of offline for a bit so someone can advise me on what i need to do to hide this

so.. um...  we now try to imagine what it may look like and then advise you?
Title: Re: Remove Category Name
Post by: jenkinhill on December 01, 2016, 13:34:32 PM
 ::)
Title: Re: Remove Category Name
Post by: Studio 42 on December 01, 2016, 14:32:02 PM
In any template  CSS file, or in your template custom CSS :
.browse-view h1 {
    display: none;
}