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 should show only current category and its children, but it's not

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.
12

Hello

In file - \wp-content\plugins\woocommerce-products-filter\js\front.js - I added the code - https://share.pluginus.net/image/i20231226124510.png

if (Object.keys(woof_really_curr_tax).length > 0) {
link = link + '?really_curr_tax=' + woof_really_curr_tax.term_id + '-' + woof_really_curr_tax.taxonomy;
}

I have passed this on to the developers for review.

OK!
Looks like index.php is also changed

if (!defined('DOING_AJAX') && !is_page()) {

global $wp_query;

$queried_obj = get_queried_object();

if (isset($wp_query->query_vars['taxonomy']) and is_object($queried_obj) and get_class(get_queried_object()) == 'WP_Term' and !isset($request_data['really_curr_tax'])) {

if (is_object($queried_obj)) {

$this->set_really_current_term($queried_obj);

}

} elseif (isset($request_data['really_curr_tax'])) {

$tmp = explode('-', $request_data['really_curr_tax'], 2);

$res = get_term($tmp[0], $tmp[1]);

$this->set_really_current_term($res);

} else {

$this->set_really_current_term();

}

}

I guess this is also relevant?

Please let me know how to proceed with future plugin updates.
Thank you!

Hello

Looks like index.php is also changed - This code does not affect the problem, but you can add it anyway, it is already included in the new version of the plugin

Unfortunately, I don’t yet know when and in what form the update will be released. Developers will begin work after January 8

Hello

Update is done

12