Skip to content

Instantly share code, notes, and snippets.

@swoboda
Created September 17, 2015 12:30
Show Gist options
  • Save swoboda/22806326e62315e9555c to your computer and use it in GitHub Desktop.
Save swoboda/22806326e62315e9555c to your computer and use it in GitHub Desktop.
remove_backorder_email
<?php
add_action( 'woocommerce_email', 'wpdesk_disable_backorder_email' );
// Wyłącz powiadomienia mailowe o produkcie na zamówienie
function wpdesk_disable_backorder_email( $email_class ) {
remove_action( 'woocommerce_product_on_backorder_notification', array( $email_class, 'backorder' ) );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment