Hello
If in WooCommerce products filter plugin - search by price not work - you may try do next:
In file:
{yours site}/wp-content/plugins/woocommerce-products-filter/js/front.js
find function:
woof_get_submit_link
and there replace row
var l = woof_current_page_link + '?min_price=' + woof_current_values.min_price + '&max_price=' + woof_current_values.max_price;
to
var l = woof_current_page_link + '?swoof=1&min_price=' + woof_current_values.min_price + '&max_price=' + woof_current_values.max_price;
Regards
OrdaSvit team