Skip to content

Instantly share code, notes, and snippets.

@jonathandavis
Created March 25, 2013 17:34
Show Gist options
  • Save jonathandavis/5238942 to your computer and use it in GitHub Desktop.
Save jonathandavis/5238942 to your computer and use it in GitHub Desktop.
<?php
add_filter('shopp_order_event_emails','disable_customer_order_notifications');
function disable_customer_order_notifications ($messages) {
if ( 'email-order.php' == $messages['customer'][3] )
unset($messages['customer']);
return $messages;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment