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.
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
©2006-2025 IAAI Software | Contact Us | Privacy Policy
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