Sorry, I misunderstood the issue.
You can fix it (temporarily) in two ways:
1. Install Code Snippet (https://meowapps.com/add-custom-php-code-wordpress/) and create a snippet with this code:
add_filter( 'dbclnr_check_support_for_option', 'handle_user_roles_option', 10, 3 );
function handle_user_roles_option( $status, $option, $active_plugins ) {
global $wpdb;
if ( $option === $wpdb->prefix . "user_roles" ) {
return [ 'status' => 'ok', 'usedBy' => "WordPress" ];
}
return $status;
}
That will add a filter in the Database Cleaner to handle this case (Database Cleaner is built on a dynamic infrastructure like this).
2. Modify the code of the plugin directly. In the support/core.php file, there is a function core_option_to_plugin. In that one, simply add this at the end of the function (before the return), or at the beginning of it:
global $wpdb;
$options[$wpdb->prefix . "user_roles"] = "WP";
Please let me know if one solution or another works for you (they do the same thing, so you only need to try one). If yes, the next release of the plugin will work nicely with this option.
Thanks guys!
-
This reply was modified 2 years, 6 months ago by Jordy Meow.