Open
In the WordPress back end wherever there are lists where items can be selected with checkboxes, e.g. lists of posts, lists of page, lists of plugins, there is a select-all checkbox available at the top and bottom of the list.
In WordPress 6.5 this broke if Forms is active.
The issue has been raised with the developers and we aim to have a fix as soon as possible.
Hello, ist there a timeframe for this to be fixed?
I checked with the developers, who have it on their plate, but say that a seemingly minor change in WordPress 6.5 had quite far-reaching effects throughout the Toolset plugins, such that this “minor” issue actually requires quite a lot of work to resolve.
But they are working on it.
Looking forward to this fix–I have hundreds of woocommerce products and I miss the select all -> bulk edit.
Any updates on this?
I spoke to the developers who have some high priority tasks to complete but say they should be able to return to this soon.
Thanks for your patience.
hello Nigel,
I raised this issue 5 months ago in a support ticket, it has not yet been resolved. ‘Select all’ ist quite important to us for bulk editing. Do you know any plans, when this bug will be fixed?
Kind regards and many thanks for your support
Franz
You could add the following to your theme’s function.php file or however you’d like to inject this script for admin screens (code snippets, your own plugin code, etc.):
add_action( 'admin_footer', function() {
?>
(function($) {
$(function() {
$('#cb-select-all-1, #cb-select-all-2').click(function() {
$('th.check-column input[type="checkbox"]').prop('checked', $(this).prop('checked'));
});
});
})(jQuery);
<?php
});
This essentially restores functionality that for whatever reason is broken by Toolset’s Forms plugin.