• Hello,

    The plugin appears to work correctly, but does not actually deletion of the user account. The account deletion emails are triggered but the user is still logged in and the account remains.

    This is using a woocoomerce site (Subsite of a multisite setup).

    Are there know limitations or causes for this issue? If not, what can we do to investigate this further.

    Kind Regards

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Sanjeev Aryal

    (@sanzeeb3)

    Hi, thanks for reaching out. I guess there’s an issue with multisite. I’ll test and investigate the issue. Hopefully this will be resolved soon.

    Regards,

    Thread Starter dev

    (@devksec)

    Hello,

    Any update on this issue with multisite?

    Kind Regards

    Plugin Author Sanjeev Aryal

    (@sanzeeb3)

    Hi @devksec,

    I don’t have any updates on the multisite compatibility. Multisite users work in different ways – deleting from the specific subsite and deleting from the entire network.

    If you’re willing to, can you try adding the code snippet:

    add_action( 'wp_frontend_delete_account_process', function( $user ) {
    	
    	if ( ! function_exists( 'wpmu_delete_user' ) ) { 
               require_once ABSPATH . '/wp-admin/includes/ms.php'; 
    	}
    
    	wpmu_delete_user( $user->ID );
    });

    which will delete the user from the entire network.

    Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Accounts not deleted’ is closed to new replies.