[Requests] Content Aware Sidebars Pro v3.18.1 - Best WordPress Widget Area Plugin

Ponas

Well-known member
XNullUser
Joined
Jan 17, 2022
Messages
1,301
Reaction score
93
Points
48
NullCash
668
Content Aware Sidebars Pro v3.17.1 - it works on wp 6.5 (php 8.3.4), but the admin plugin page is broken by a table and wp no longer shows another plugins. Just need to fix a small mistake. Anyone know how to fix this quickly, try fixing the module.

I have tried many sidebar plugins, but most of them do not work as desired and there is no style editing anywhere. The worst thing is when the replace sidebar rule doesn't work on all pages, so it makes no sense to use the plugin.

Content Aware Sidebars Pro latest version should work fine. By, get the module and share it, or fix the existing code. I think this module is useful for many people.


Fatal error: Uncaught Error: count(): Argument #1 ($value) must be of type Countable|array, null given
in /var/www/demo-site/wp-admin/includes/class-wp-list-table.php on line 655


Call stack:

WP_List_Table::row_actions()
wp-admin/includes/class-wp-plugins-list-table.php:1153
WP_Plugins_List_Table::single_row()
wp-admin/includes/class-wp-plugins-list-table.php:706
WP_Plugins_List_Table::display_rows()
wp-admin/includes/class-wp-list-table.php:1706
WP_List_Table::display_rows_or_placeholder()
wp-admin/includes/class-wp-list-table.php:1633
WP_List_Table::display()

wp-admin/plugins.php:801



$size = count($_POST['ca1']);
in PHP 8 will not work you have to do it like that

$size = count((array)$_POST['ca1']);
and do this for the rest of it

Post automatically merged:

Possible Solution​

cast $output as array after the exec command.
$output = (array) $output;
 
Last edited:
Top