skip to Main Content

WordPress – Woocommerce Subscription Cancellation (Send customer email)

Woocommerce subscriptions by default doesn't send subscription cancellation to the customer so I'm trying to add that by using woocommerce_subscription_status_pending-cancelHook and the function is below: add_action('woocommerce_subscription_status_pending-cancel', 'yanco_woocommerce_subscription_status_pending_cancel', 10, 3 ); function yanco_woocommerce_subscription_status_pending_cancel( $subscription ) { $customer_email = $subscription->get_billing_email(); $wc_emails =…

VIEW QUESTION
Back To Top
Search