I have a subscription service running on WooCommerce, using the Subscriptio plugin and I don’t want to send the renewal order emails. They are exactly the same as Completed Order emails.
What I am looking for is a hook/filter, something like woocommerce_email_completed_order
, that would prevent the renewal email from being sent.
I am sure it’s supereasy, but that hook/filter just escapes my Google searches! 🙂
We figured out how to do this. You have to use
remove_action()
onwoocommerce_order_status_completed_notification
in thewoocommerce_email
action.So for you, something like this:
Hopefully that helps!