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

Display count next to the checkbox label selected

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.

Hello, it is possible to display count next to a checkbox when this is selected? It disappears when you select it. Thanks in advance.

And another thing, i have the option 'show toggle button for radio' with 'yes, show closed'. It is possible to open all toggles and display woof_block_html_items when i check an option from any of the 3 blocks? Thanks in advance.

Hello

1(to display count) Unfortunately, there is no such feature,

2 (to open all toggles) Unfortunately no. But there is an extension that can create similar functionality - https://products-filter.com/extencion/conditionals

document.addEventListener('DOMContentLoaded', function() {
// Get all checkboxes
var checkboxes = document.querySelectorAll('.woof_checkbox_term');

// Add event listener to each checkbox
checkboxes.forEach(function(checkbox) {
checkbox.addEventListener('change', function() {
// Get the corresponding woof_block_html_items
var blockItems = this.closest('.woof_container_inner').querySelector('.woof_block_html_items');

// Toggle the display property based on the checkbox state
blockItems.style.display = this.checked ? 'block' : 'none';
});
});
}); I found this javascript function in the Google debugger, where can I find it in the plugin files?

Hello

My plugin does not have such code, perhaps this is a third-party customization