Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter jebanks

    (@jebanks)

    Hi Ben,

    Thank you for sharing your knowledge and experience with me; I updated the email-cart.php as you outlined, and email is working as expected. Very much appreciate it.

    Jake

    Thread Starter jebanks

    (@jebanks)

    Hi Ben,

    Thank you for your response & details; this gave me exactly what I needed to resolve the issue. For REF, I had to modify the following values within the email-cart.php:

    The following code:
    do_action( ‘woocommerce_email_header’, $heading );
    echo $message;
    do_action( ‘woocommerce_email_footer’ );

    had to be updated to:
    do_action( ‘woocommerce_email_header’, $email_heading, $email );
    echo $message;
    do_action( ‘woocommerce_email_footer’, $email );

    I’ll notify the author about the error and the above details.

    Best Regards,
    Jake

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