• Hi there.

    With this little hack you get the user_meta information in the notification mail:

    in /inc/delete_user.php line 95 add

    // User Meta
    $user_metas_data = get_user_meta( $this->user_ID );
    	ob_start();							// start cache
    	var_dump( $user_metas_data );
    	$user_metas = ob_get_contents(); 	// cache to $content
    	ob_end_clean();  					// clean cache
    

    in /inc/delete_user.php line around lin 121 add

    	'User Metas' . "\n" .
    	'----------------------------------------------------------------------' . "\n" .
    	"\n\n" . $user_metas . "\n\n" .
    

    that’s it. Have fun.

    – Alex

  • The topic ‘Add User Meta’ is closed to new replies.