News:

Looking for documentation? Take a look on our wiki

Main Menu

Remove Category Name

Started by psvialli, November 30, 2016, 11:06:18 AM

Previous topic - Next topic

psvialli

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 

jenkinhill

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
Kelvyn
Lowestoft, Suffolk, UK

Retired from forum life November 2023

Please mention your VirtueMart, Joomla and PHP versions when asking a question in this forum

psvialli

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.

GJC Web Design

hard to say as your html is incomplete but could be

.browse-view > h1 {display:none;}
GJC Web Design
VirtueMart and Joomla Developers - php developers https://www.gjcwebdesign.com
VM4 AusPost Shipping Plugin - e-go Shipping Plugin - VM4 Postcode Shipping Plugin - Radius Shipping Plugin - VM4 NZ Post Shipping Plugin - AusPost Estimator
Samport Payment Plugin - EcomMerchant Payment Plugin - ccBill payment Plugin
VM2 Product Lock Extension - VM2 Preconfig Adresses Extension - TaxCloud USA Taxes Plugin - Virtuemart  Product Review Component
https://extensions.joomla.org/profile/profile/details/67210
Contact for any VirtueMart or Joomla development & customisation

Studio 42

But remember that google search check if elements are hidden , so your H1 is not used anymore for SEO.

psvialli

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

GJC Web Design

 :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?
GJC Web Design
VirtueMart and Joomla Developers - php developers https://www.gjcwebdesign.com
VM4 AusPost Shipping Plugin - e-go Shipping Plugin - VM4 Postcode Shipping Plugin - Radius Shipping Plugin - VM4 NZ Post Shipping Plugin - AusPost Estimator
Samport Payment Plugin - EcomMerchant Payment Plugin - ccBill payment Plugin
VM2 Product Lock Extension - VM2 Preconfig Adresses Extension - TaxCloud USA Taxes Plugin - Virtuemart  Product Review Component
https://extensions.joomla.org/profile/profile/details/67210
Contact for any VirtueMart or Joomla development & customisation

jenkinhill

Kelvyn
Lowestoft, Suffolk, UK

Retired from forum life November 2023

Please mention your VirtueMart, Joomla and PHP versions when asking a question in this forum

Studio 42

In any template  CSS file, or in your template custom CSS :
.browse-view h1 {
    display: none;
}