diff --git a/includes/bootstrap.php b/includes/bootstrap.php index b8b581042..5841bad0f 100644 --- a/includes/bootstrap.php +++ b/includes/bootstrap.php @@ -239,9 +239,9 @@ static function () { printf( '
', esc_html__( 'Would you like to delete all Distributor data?', 'distributor' ), - esc_html__( 'By default the database entries are not deleted when you deactivate Distributor. If you are deleting Distributor completely from your website and want those items removed as well check, add below code to wp-config.php .', 'distributor' ), - 'define(\'DT_REMOVE_ALL_DATA\', true)', - esc_html__( 'After adding this code, the Distributor plugin data will be removed from the main website database when deleting the plugin. You can review uninstall.php (in the plugin root directory) to learn more about deleted data. After deleting the Distributor plugin, you can remove the code.', 'distributor' ) + esc_html__( 'By default, the database entries are not deleted when you deactivate Distributor. If you are deleting Distributor completely from your website and want those items removed as well, add the code below to wp-config.php:', 'distributor' ), + 'define( \'DT_REMOVE_ALL_DATA\', true )', + esc_html__( 'After adding this code, the Distributor plugin data will be removed from the website database when deleting the plugin. This will not delete the posts with their metadata other than the subscription. You can review uninstall.php (in the plugin root directory) to learn more about the deleted data. After deleting the Distributor plugin, you can remove the code from the wp-config.php file. Please make sure that this action cannot be undone; take a backup before proceeding.', 'distributor' ) ); } ); diff --git a/uninstall.php b/uninstall.php index 213c8dd6a..07cba68f0 100644 --- a/uninstall.php +++ b/uninstall.php @@ -13,7 +13,7 @@ } /* - * Only remove ALL product and page data if DT_REMOVE_ALL_DATA constant is set to true in user's + * Only remove ALL data if DT_REMOVE_ALL_DATA constant is set to true in user's * wp-config.php. This is to prevent data loss when deleting the plugin from the backend * and to ensure only the site owner can perform this action. */