Skip to content

Instantly share code, notes, and snippets.

@ericnicolaas
Created September 24, 2020 08:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ericnicolaas/a4c9170ff16df8e2ec203839cba4584b to your computer and use it in GitHub Desktop.
Save ericnicolaas/a4c9170ff16df8e2ec203839cba4584b to your computer and use it in GitHub Desktop.
Include donation gateway as a donation field that can be used when subscribing someone
<?php
add_filter(
'charitable_newsletter_connect_provider_donation_fields',
function( $fields ) {
$fields['donation_gateway'] = 'Payment Gateway';
return $fields;
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment