user9206
0
Q:

woocommerce recipient email default change Function

function so_39779506_filter_recipient( $recipient ) {
				
		// Use this to completely replace the recipient.
		$recipient = '[email protected]';
		// $recipient = '[email protected]';
		return $recipient;
				
        // Use this instead IF you wish to ADD this email to the default recipient.
        //$recipient .= ', [email protected]';
}
add_filter( 'woocommerce_email_recipient_new_order', 'so_39779506_filter_recipient', 10, 2 );
0

New to Communities?

Join the community