Skip to content

Instantly share code, notes, and snippets.

@ericnicolaas
Created May 1, 2019 23:19
Show Gist options
  • Save ericnicolaas/f4fa2e532f22c9fb290a73fc6fbd327a to your computer and use it in GitHub Desktop.
Save ericnicolaas/f4fa2e532f22c9fb290a73fc6fbd327a to your computer and use it in GitHub Desktop.
Charitable Ambassadors - Get suggested donations value
<?php
add_filter(
'charitable_campaign_submission_donation_options_fields',
function( $fields, $form ) {
$fields['suggested_donations']['value'] = $form->get_campaign_value( 'suggested_amounts' );
return $fields;
},
10,
2
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment