How to disable the white-label of MainWp child plugin?

Hi everyone,

On a website I had enabled MainWP as a white-label, I can’t disable it anymore and since isn’t in my Main WP dashboard I can’t add it again since it requires the Unique security ID (optional).
I’ve tried everything, delete from FTP, reinstall, Delete the DB tables, install again, and the plugin still doesn’t show in the WordPress Dashboard so I can take the Unique security ID to add it to the main website.

Any ideas?

Thanks!

I remember now how I did it in the past:
Using this plugin:
https://bitbucket.org/kronoslabs/klbs-reset-mainwpchild-settings/src/master/

1 Like

There is also an option to reset branding by using the following code snippet on the child site:

add_filter( 'mainwp_child_branding_init_options', 'mycustom_mainwp_child_branding_init_options');
function mycustom_mainwp_child_branding_init_options( $opts ) {
if (is_array($opts) && isset($opts['hide'])) {
      $opts['hide'] = '';
}
return $opts;
}
1 Like

Thank you @bogdan !
I will keep this for next time.

1 Like

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.