• Resolved tbyrne

    (@tbyrne)


    We have installed MarketKing plugin onto our site and it is working beautifully, the only issue we are having is when orders are placed we don’t get the email about orders as well as the vendor. Is there a way to make it so we both get the order email?

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Author WebWizards

    (@webwizardsdev)

    Hi there,

    Glad to hear you’re liking the plugin so far!

    Yes, you can do that by adding this PHP code snippet to your site:

    add_filter('marketking_new_order_email_recipient', function($recipient){
    	$admin_email = '[email protected]';
    	$recipient .= ', '.$admin_email;
    	return $recipient;
    }, 10, 1);

    In the above code, you can replace [email protected] with anything you want.

    The snippet can be added to functions.php or using any code snippets plugin.

    Kind regards,

    Stefan

Viewing 1 replies (of 1 total)
  • The topic ‘Order emails to shop admin as well’ is closed to new replies.