Skip to content

Instantly share code, notes, and snippets.

@jonathandavis
Created March 25, 2013 17:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jonathandavis/5238933 to your computer and use it in GitHub Desktop.
Save jonathandavis/5238933 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) {
unset($messages['customer']);
return $messages;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment