Your cart is currently empty!
How To Completely Uninstall Woocommerce
There are two things to understand when uninstalling or removing WooCommerce.
- If you deactivate and delete the plugin from WordPress, you only remove the plugin and its files. Your settings, orders, products, pages, etc… will still exist in the database.
- If you need to remove ALL WooCommerce data, including products, order data, etc., you need to be able to modify the site’s
wp-config.php
file before deactivating and deleting the plugin.
As this is destructive and permanent, we provide this information as-is – The WooCommerce.com Support team cannot help with this process or anything as a result of it.
To fully remove all WooCommerce data from your WordPress site, open your site’s wp-config.php
file. Scroll down until you find the bottom of the file, add the following constant on its own line above the “That’s all, stop editing” comment.
define( 'WC_REMOVE_ALL_DATA', true );
/* That’s all, stop editing!. */
Then when you deactivate and delete WooCommerce it will remove all of its data from your WordPress site database.
Leave a Reply