You want to remove SEOPress Free / PRO / Insights from your WordPress site? Follow this step by step guide.
Recommended method
SEOPress Free/PRO
Simply add this line of code to your wp-config.php file to delete automatically everything from your database (Free + PRO), then follow steps 1-5.
define('SEOPRESS_UNINSTALL', true );
SEOPress Insights
Use this define for SEOPress Insights (v3 required):
define('SEOPRESS_INSIGHTS_UNINSTALL', true);
Manual method
SEOPress Free/PRO
- Run a full backup (database + files) of your site: safety first!
- Go to your WordPress admin, Plugins.
- Select SEOPress Free / PRO from the list and click Deactivate from the bulk actions select.
- Now the plugins are deactivated, select them again, and choose Delete from the bulk actions.
- “Are you sure you want to delete the selected plugins and their data?”, click OK.
- To remove SEOPress’ entries from your database, open this one using PhpMyAdmin (or equivalent).
- Search for entries starting by
seopress_inwp_postmetaandwp_optionstables. - Select the entries found and delete them.
- Delete
wp_seopress_significant_keywordstable. - That’s it!
SEOPress Insights
- Run a full backup (database + files) of your site: safety first!
- Go to your WordPress admin, Plugins.
- Select SEOPress Insights from the list and click Deactivate.
- “Are you sure you want to delete the selected plugins and their data?”, click OK.
- To remove SEOPress’ Insights entries from your database, open this one using PhpMyAdmin (or equivalent).
- Search for entries starting by
seopress_insights_inwp_postmetaandwp_optionstables. - Also search for the entry
seopress_backlinks_datain thewp_postmetatable. - Select the entries found and delete them.
- In the
wp_poststable, delete all entries where post_type isseopress_rankings,seopress_backlinksorseopress_p1_rankings(and their associated wp_postmeta rows). - Delete the following custom tables:
wp_seopress_insights_backlinkswp_seopress_insights_rankingswp_seopress_insights_metrics
- That’s it!