What this problem is
After updating a plugin, the site shows errors, blank screens, or features stop working.
Why it happens
- Plugin update introduced a bug or breaking change
- Conflict with another plugin or the active theme
- PHP version or missing extension incompatibility
- Partial update (files not fully written)
Prerequisites
- FTP/File Manager access
- Backup access (hosting snapshot or backup plugin) is strongly recommended
Diagnosis
Check error logs or wp-content/debug.log to identify the plugin and error type.
Detailed steps
Step 1) Disable the plugin immediately
Rename the plugin folder in wp-content/plugins.
Expected result: the site loads again if that plugin caused the issue.
Step 2) Roll back to the previous plugin version
Restore from backup or manually install the previous version (download from the plugin repository if available) by replacing the plugin folder.
Step 3) Check compatibility
- Verify required PHP and WordPress versions for that plugin
- Check known issues in the plugin changelog
Step 4) Re-enable carefully
Re-enable the plugin and test critical flows (checkout, forms, login).
Expected results
- Site restored
- Plugin runs on a compatible version or replaced
What to do if it fails
- Keep the plugin disabled and contact the plugin author with the error log
- Identify conflicts by enabling other plugins one by one
- Use staging to reproduce safely
Best practices
- Update plugins in staging first
- Keep a rollback plan (backups, snapshots)
- Avoid auto-updates for mission-critical plugins without monitoring