Search code examples
phpsearchjoomlacategoriesvirtuemart

How to remove product categories showing up at virtuemart's 2 search result page?


I'm using the default Virtuemart product search module. If I search for something, I'm redirected to a result page with my actual product results at the bottom, and the product categories on top... I can't understand why this is happening, the categories showing up are useless. So, actually, I want to hide the product categories from my results page. How can I do that? I can't find the view of the results page in order to change it.

I've searched everywhere but I can't seem to find it.

I'm using Joomla 2.5.4, and Virtuemart 2.0.6.

Thanks.


Solution

  • Ok, I just figured it out.

    On components/com_virtuemart/views/category/tmpl/default.php

    replace line 72

    if(!empty($this->category->children)){
    

    with

    if(!empty($this->category->children ) && !(boolean)JRequest::getVar('search', false)){