Skip to content

Instantly share code, notes, and snippets.

@mehul0810
Last active September 6, 2020 16:51
Show Gist options
  • Save mehul0810/d842908cd4491bb97acd73315295cc95 to your computer and use it in GitHub Desktop.
Save mehul0810/d842908cd4491bb97acd73315295cc95 to your computer and use it in GitHub Desktop.
Update description on payment page for Mastercard (MPGS) for Give
<?php
function mg_update_payment_description( $text, $donationId ) {
$donation_type = give_get_meta( $donationId, 'donation_type', true ); // `donation_type` is the custom field key added by the Form Field Manager.
return "{$text} - {$donation_type}";
}
add_filter( 'mgmcfg_update_form_description', 'mg_update_payment_description', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment