Created
May 8, 2020 12:15
-
-
Save dhirenpatel22/f894b01a8ad4a206398e835747ab3242 to your computer and use it in GitHub Desktop.
Create custom hooks for WooCommerce Subscription status change to cancelled and subscription status change to active
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function add_custom_filters_and_actions() { | |
add_filter( 'woocommerce_webhook_topic_hooks', 'add_custom_wcs_topics', 30, 2 ); | |
add_filter( 'woocommerce_valid_webhook_events', 'add_custom_wcs_events', 20, 1 ); | |
add_filter( 'woocommerce_webhook_topics' , 'add_custom_wcs_topics_admin_menu', 20, 1 ); | |
add_action( 'woocommerce_subscription_status_pending-cancel_to_cancelled', 'add_subscription_cancelled_callback', 10, 1 ); | |
add_action( 'woocommerce_subscription_status_pending_to_active', 'add_subscription_active_callback', 10, 1 ); | |
} | |
/** | |
* Add Custom Subscription webhook topics | |
*/ | |
function add_custom_wcs_topics( $topic_hooks, $webhook ) { | |
switch ( $webhook->get_resource() ) { | |
case 'subscription': | |
$topic_hooks = apply_filters( 'woocommerce_subscriptions_webhook_topics', array( | |
'subscription.cancelled' => array( | |
'wcs_webhook_status_cancelled' | |
), | |
'subscription.activated' => array( | |
'wcs_webhook_status_active' | |
) | |
), $webhook ); | |
break; | |
} | |
return $topic_hooks; | |
} | |
/** | |
* Add Subscription topics to the Webhooks dropdown menu in when creating a new webhook. | |
*/ | |
function add_custom_wcs_topics_admin_menu( $topics ) { | |
$front_end_topics = array( | |
'subscription.cancelled' => __( 'Subscription Cancelled', 'woocommerce-subscriptions' ), | |
'subscription.activated' => __( 'Subscription Activated', 'woocommerce-subscriptions' ) | |
); | |
return array_merge( $topics, $front_end_topics ); | |
} | |
/** | |
* Add webhook event for subscription switched. | |
*/ | |
function add_custom_wcs_events( $events ) { | |
$events[] = 'cancelled'; | |
$events[] = 'activated'; | |
return $events; | |
} | |
function add_subscription_cancelled_callback( $subscription ) { | |
do_action( 'wcs_webhook_status_cancelled', $subscription->get_id()); | |
} | |
function add_subscription_active_callback( $subscription ) { | |
do_action( 'wcs_webhook_status_active', $subscription->get_id()); | |
} | |
add_custom_filters_and_actions(); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This code has always worked until now. Now I have updated Woocomerce to the new version 9.0.1 and it no longer works.
I have the following error in the log:
woocommerce_deliver_webhook_async -> action failed via WP Cron: Call to a member function get_endpoint_data() on null
Maybe you can help me and update the code?