You are here:  » Drop Record


Drop Record

Submitted by JasonG on Sat, 2013-05-11 15:03 in

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

Submitted by support on Sun, 2013-05-12 09:02

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