You are here:  » Remove categoty: in the search box

Support Forum



Remove categoty: in the search box

Submitted by stechew on Fri, 2010-11-19 00:12 in

Hi David,

Please advise how to remove category: & : from category:Athletic Accessorie: in the searchform.php as the code below

I just want to display only Athletic Accessorie in the search box.

Thank you.

Submitted by support on Fri, 2010-11-19 09:11

Hi,

In html/searchform.php look for the following code at line 3 where the search box is created and pre-populated with the $q variable:

    <input type='text' name='q' id='q' size='35' value='<?php print (isset($q)?$q:""); ?>' />

...and replace that with:

    <?php
    $searchform_q = str_replace(array(":","category"),"",$q);
    ?
    <input type='text' name='q' id='q' size='35' value='<?php print $searchform_q?>' />

If you want to do the same with brand: and merchant: use:

    $searchform_q = str_replace(array(":","category","brand","merchant"),"",$q);

Cheers,
David.
--
PriceTapestry.com