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 access has been blocked by an 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 statuswp_ajax_uabx_toggle_user_block – For AJAX functionalityThe plugin stores block status in user meta:
* Meta key: uabx_user_blocked
* Meta value: ‘1’ (blocked) or ‘0’ (not blocked)
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.