Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › Settings › Reply To: Settings
April 8, 2019 at 8:20 am
#22066
Keymaster
Hi,
Yes, that query modification is not correct, but you can easily fix it. Instead of this:
tm.meta_key NOT LIKE ('cat_seo_text','thumbnail_id') AND
use the NOT IN operator like so:
tm.meta_key NOT IN ('cat_seo_text','thumbnail_id') AND
..and that should do the trick.