Hi David,
When using Drop Record on a "product name" should the product with that name then not be displayed after a "Search" using the search box?
I added "bakers" and have imported all feeds but it still shows
{link saved}
Thanks Stuart
Hi Stuart,
The Drop Record filter is case sensitive by default so that's probably all it's down to, but if you want to make it case insensitive, look for the following code at line 181 of includes/filter.php:
$filter_dropRecordFlag = (strstr($text,$filter_data["text"]) !== FALSE);
...and REPLACE with:
$filter_dropRecordFlag = (stristr($text,$filter_data["text"]) !== FALSE);
Cheers, David. -- PriceTapestry.com
©2006-2025 IAAI Software | Contact Us | Privacy Policy
Hi Stuart,
The Drop Record filter is case sensitive by default so that's probably all it's down to, but if you want to make it case insensitive, look for the following code at line 181 of includes/filter.php:
$filter_dropRecordFlag = (strstr($text,$filter_data["text"]) !== FALSE);
...and REPLACE with:
$filter_dropRecordFlag = (stristr($text,$filter_data["text"]) !== FALSE);
Cheers,
David.
--
PriceTapestry.com