Hello
Thank you for cooperation! ??
Fix:
in file \woocommerce-products-filter\index.php
1) in function parse_query remove/comment this line:
$meta_query = $this->listen_catalog_visibility($meta_query, true);
and add this code( https://c2n.me/3JnyL7C.png ):
$tax_query=$this->listen_catalog_visibility($tax_query, true);
2) in function dynamic_count change code(name of array) – https://c2n.me/3Jnz7Tw.png
3) in function get_meta_query remove/comment this line – https://c2n.me/3Jnzo7f.png
4) in function woof_products add this code( https://c2n.me/3JnzPqc.png ) and change 1 variable in array $args
// fix visibility
$tax_query= $this->get_tax_query($taxonomies);
$tax_query= $this->listen_catalog_visibility($tax_query);
Please do test.