Skip to content

Instantly share code, notes, and snippets.

@jonathandavis
Created March 25, 2013 17:33
Show Gist options
  • 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