PluginUs.Net - Business Tools for WooCommerce and WordPress

[realize your idea - make your dreams come true]

Support Forum

You need to log-in to create request (topic) to the support

Filter on Title, Description + separate SKU filter

The support doesn work on Saturdays and Sundays, so some Friday requests can be answered on Monday. If you have problems with registration ask help on contact us page please
If you not got email within 24~36 business hours, firstly check your spam box, and if no any email from the support there - back to the forum and read answer here. DO NOT ANSWER ON EMAILS [noreply@pluginus.net] FROM THE FORUM!! Emails are just for your info, all answers should be published only here.
The support doesn work on Saturdays and Sundays, so some Friday requests can be answered on Monday.

When searching SKU in a separate field and Title/Description in Text the title/description filter seems to be ignored if no results match.

This can be seen at this test site

https://aston.aidanbrownit.co.uk

Enter Grille in Title/Description and Part No. 1r12

this combination doesn't exist and should return no results but instead you see the Part no search results.

Hello

Please paste your license key here - https://share.pluginus.net/image/i20230222134241.png -> https://share.pluginus.net/image/i20230222134511.png and  ftp+wp-admin access - https://share.pluginus.net/image/i20230222134615.png

Update the  plugin to latest version - https://products-filter.com/how-to-make-auto-update-for-wordpress-plugins-and-themes-bought-on-envato

Confirmed the plugin is updated to version 3.3.4.5 and added private details

Just to note I've updated the address to a clone of the site before granting access.

https://astonclone.aidanbrownit.co.uk

Hello

Please add  in functions.php  this  code:

add_filter('woof_husky_query_post__in', function($do){
return false;
});
and  do a test

Thanks Pablo, I've added this but I'm still seeing the same results.

I have the following added to my functions.php for husky

add_filter('woof_main_query_tax_relations', 'my_woof_main_query_tax_relations');
function my_woof_main_query_tax_relations()
{
    return array(
   'product_cat' => 'AND',
   'by_text' => 'AND',
   'by_sku' => 'AND',
   'pa_model' => 'AND',
   'pa_condition' => 'AND'
    );
}
add_filter('woof_husky_query_post__in', function($do){
return false;
});

Hello

Ok!

This code is not necessary - https://share.pluginus.net/image/i20231208134205.png - better remove it

Try  in  file  - \wp-content\plugins\woocommerce-products-filter\ext\by_text\index.php - change  this  code - https://share.pluginus.net/image/i20231208134421.png

$this->use_post__in = false;// apply_filters('woof_husky_query_post__in', true);

and  do a test

That's great, working! Thank you

Welcome;)

Quote from Pablo Borysenco on December 8, 2023, 13:44

Hello

Ok!

This code is not necessary - https://share.pluginus.net/image/i20231208134205.png - better remove it

Try  in  file  - \wp-content\plugins\woocommerce-products-filter\ext\by_text\index.php - change  this  code - https://share.pluginus.net/image/i20231208134421.png

$this->use_post__in = false;// apply_filters('woof_husky_query_post__in', true);

and  do a test

Hello, this code is on production from todays update: $this->use_post__in = apply_filters('woof_husky_query_post__in', false);