Skip to content

Instantly share code, notes, and snippets.

@ericnicolaas
Last active March 14, 2016 00:03
Show Gist options
  • Save ericnicolaas/837ea49b204ec5189c82 to your computer and use it in GitHub Desktop.
Save ericnicolaas/837ea49b204ec5189c82 to your computer and use it in GitHub Desktop.
//////////////////////
// Find this:
class Charitable_Ambassadors_Email_New_Campaign extends Charitable_Email {
/**
* @var string
*/
CONST ID = 'new_campaign';
...
}
//////////////////////
// Replace with this:
class Charitable_Ambassadors_Email_New_Campaign extends Charitable_Email {
/**
* @var string
*/
CONST ID = 'new_campaign';
/**
* Sets whether the email allows you to define the email recipients.
*
* @var boolean
* @access protected
* @since 1.1.0
*/
protected $has_recipient_field = true;
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment