VirtueMart Forum

VirtueMart 2 + 3 + 4 => General Questions => Topic started by: Ihateit on September 24, 2012, 10:41:27 AM

Title: [SOLVED] How to remove "Choose Product Type" from search page
Post by: Ihateit on September 24, 2012, 10:41:27 AM
Dont know if this is the right place for this question, but here it goes:

I want to remove the "Choose product type" and the input dropdown box from the search page. I've added a image so you can see what i mean. I cant find any place to edit it backend, nor can i find the php file to simply remove or comment out this section.

In advance, thanks for any help.

//A. Jytzler

[attachment cleanup by admin]
Title: Re: How to remove "Choose Product Type" from search page
Post by: Rayjak on September 24, 2012, 22:11:47 PM
I'm looking for the same thing.
Title: Re: How to remove "Choose Product Type" from search page
Post by: bytelord on September 24, 2012, 22:30:06 PM
Hello,

You have to comment an echo inside category\default.php file around line 150
from:

   <?php echo $this->searchcustom ?>


to

    <?php //echo $this->searchcustom ?>


The default category layout located under your_joomla_folder\components\com_virtuemart\views\category\tmpl\default.php

if you use a custom template edit the file (or copy the above one to create an override) under:

your_joomla_folder\templates\your_joomla_template\html\com_virtuemart\category\default.php


hope it helps you out

Regards
Title: Re: How to remove "Choose Product Type" from search page
Post by: Ihateit on September 25, 2012, 13:30:17 PM
Quote from: bytelord on September 24, 2012, 22:30:06 PM
Hello,

You have to comment an echo inside category\default.php file around line 150
from:

   <?php echo $this->searchcustom ?>


to

    <?php //echo $this->searchcustom ?>


The default category layout located under your_joomla_folder\components\com_virtuemart\views\category\tmpl\default.php

if you use a custom template edit the file (or copy the above one to create an override) under:

your_joomla_folder\templates\your_joomla_template\html\com_virtuemart\category\default.php


hope it helps you out

Regards

This worked. Thank you so much, i really appreciate your help :-)

//Anders J.