Disable-Users icon indicating copy to clipboard operation
Disable-Users copied to clipboard

WordPress plugin that provides the ability to disable specific user accounts.

Results 11 Disable-Users issues
Sort by recently updated
recently updated
newest added

This line: add_filter( 'handle_bulk_actions-users', array( $this, 'handle_bulk_disable_users' ), 10, 3 ); ...should be: add_filter( 'handle_bulk_actions-users', array( $this, 'handle_bulk_actions_disable_users' ), 10, 3 );

Based off khromov's code, this iteration allows admins to toggle disabled states using the bulk action selector.

Hello. We needed a similar plugin for our site so I forked yours and made some improvements. Since I reformatted the code style to use the WordPress official coding guidelines,...

I added a bunch of code that adds the ability to hide disabled users from the All Users listing. - Settings page added to let the admin either show disabled...

It would be very useful to have a bulk option for disabling users.

This plugin addresses issue #5. In the process, I also created a generic is_user_disabled() function that checks the usermeta value. This was being done in two places already, and this...

Textdomain for the plugin needs to be changed to `disable-users`. This will allow translations through WordPress.org and greatly simplify things and likely result and many more translations. In addition the...

enhancement

(I have a PR in progress for this, but wanted to open an issue to keep you in the loop.) Adding hooks to various actions related to this plugin to...

Hi, you have those lines in the function `user_profile_field_save`: ``` if ( !isset( $_POST['ja_disable_user'] ) ) { $disabled = 0; } else { $disabled = $_POST['ja_disable_user']; } update_user_meta( $user_id, 'ja_disable_user',...

enhancement