Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save saas786/d845fa0315b4fc413240e92f6a263772 to your computer and use it in GitHub Desktop.
Save saas786/d845fa0315b4fc413240e92f6a263772 to your computer and use it in GitHub Desktop.
Delete All WooCommerce Subscriptions
<?php
/*
Plugin Name: Delete All Subscriptions
Plugin URI:
Description: Delete all of those bad boys
Author:
Author URI:
Version: 1.0
*/
function mystic_delete_all_subscriptions() {
$subscriptions = WC_Subscriptions::get_subscriptions(
array(
'subscriptions_per_page' => 1000,
)
);
foreach( $subscriptions as $subscription ) {
WC_Subscriptions_Manager::delete_subscription( $subscription['user_id'], $subscription['subscription_id'] );
}
}
add_action( 'admin_footer', 'mystic_delete_all_subscriptions' );
function mystic_force_delete_subscription( $subscription_can_be_changed, $subscription ) {
return true;
}
add_filter( 'woocommerce_subscription_can_be_changed_to_deleted', 'mystic_force_delete_subscription', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment