VirtueMart Forum

VirtueMart 2 + 3 + 4 => General Questions => Topic started by: peaceandlove on March 23, 2020, 19:49:42 PM

Title: How to remove sort by and results
Post by: peaceandlove on March 23, 2020, 19:49:42 PM
We had only 8 products in our shop, and i am using catagory view to display all products

i did not want to show,

sort by
results

in my site, i can i remove it completey
Title: Re: How to remove sort by and results
Post by: jjk on March 23, 2020, 20:33:23 PM
If your template supports a custom.css file, you can simply hide it by adding this to the custom.css file:
.orderby-displaynumber {
display:none;
}

.category-view h4{
  margin: 5px;
  padding: 0;
}


> (with or without the .category-view h4 lines)
Title: Re: How to remove sort by and results
Post by: peaceandlove on March 24, 2020, 08:10:06 AM
Thanks a lot JJK

It works, so nice of you and helpful.