Hello, if anyone else is having this problem it’s probably because your theme is missing the following line from the functions.php file.
add_theme_support( 'woocommerce' );
Hope that helps! 🙂
Hello, if anyone else is having this problem it’s probably because your theme is missing the following line from the functions.php file.
add_theme_support( 'woocommerce' );
Hope that helps! 🙂
Hi there, I came here to ask about ‘On hold’ email support too. I was able to get it working by adding the following to your plugin’s functions.php file:
if ($object == 'customer_on_hold_order' ) {
$headers .= 'Bcc: ' . implode(',', $emails) . "\r\n";
//break;
}
I just copied one of the other if statements and swapped in the ‘customer_on_hold_order value. I also removed the second half of the if statement as obviously there’s no $wcme_options option for this yet.
Would it be possible to include this in your next version of the plugin?
Thanks very much for creating this plugin! 🙂
Thanks,
Paul