User Access Blocker is a simple yet powerful WordPress plugin that allows administrators to temporarily or permanently block user access without deleting their accounts. This is perfect for situations where you need to:
Blocked users will see: “Your account has been blocked. Please contact the administrator.”
The plugin uses standard WordPress hooks:
authenticate – To check if a user is blocked during loginshow_user_profile / edit_user_profile – To add the block buttonpersonal_options_update / edit_user_profile_update – To save block statusadmin_notices – To display blocked user warningswp_ajax_uab_toggle_user_block – For AJAX functionalityThe plugin stores block status in user meta:
* Meta key: _uab_user_blocked
* Meta value: boolean (true/false)
The plugin includes a proper uninstall routine that removes all plugin data from the database when deleted through the WordPress admin.
For support, feature requests, or bug reports, please visit plugin support forum or GitHub repository.
This plugin does not collect any personal data. It only stores block status as user metadata within your WordPress database. No data is sent to external servers.
The plugin logs block/unblock actions to your server’s error log for security audit purposes. These logs remain on your server and are not transmitted elsewhere.