Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • This might be helpful. I found it while researching this problem.

    I tried it and it worked for me using WP Better Emails + WooCommerce + Mandrill.

    To completely remove the WooCommerce email headers and footers, leaving WP Better Emails to do them, add this to your theme’s functions.php file:

    //remove WooCommerce headers and footers

    function remove_woo_header_footer($object){
    remove_action(‘woocommerce_email_header’, array( $object, ’email_header’ ));
    remove_action(‘woocommerce_email_footer’, array( $object, ’email_footer’ ));
    }
    add_action( ‘woocommerce_email’, ‘remove_woo_header_footer’ );

    Thread Starter fedosky

    (@fedosky)

    I will give it try then. Thank you.

Viewing 2 replies - 1 through 2 (of 2 total)