Forum Replies Created

Viewing 1 replies (of 1 total)
  • Thread Starter glindsley

    (@glindsley)

    Okay, I enabled the debug messages and this is the message I got back:

    Warning: Transactional email triggered fatal error for callback send_raq_mail_notification in /home/stsurg70/public_html/wp-content/plugins/woocommerce/includes/class-wc-emails.php on line 153

    This is the section of code it references to:

    public static function send_transactional_email( $args = array() ) {
    	try {
    		$args = func_get_args();
    		self::instance(); // Init self so emails exist.
    		do_action_ref_array( current_filter() . '_notification', $args );
    	} catch ( Exception $e ) {
    		if ( defined( 'WP_DEBUG' ) && WP_DEBUG ) {
    			trigger_error( 'Transactional email triggered fatal error for callback ' . current_filter(), E_USER_WARNING );
    		}
    	}
    }
    • This reply was modified 7 years, 10 months ago by glindsley.
    • This reply was modified 7 years, 10 months ago by glindsley.
Viewing 1 replies (of 1 total)