Skip to content

Instantly share code, notes, and snippets.

@New0
Last active October 31, 2017 17:58
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 New0/98b57d997d739955ffe697a3a07d1684 to your computer and use it in GitHub Desktop.
Save New0/98b57d997d739955ffe697a3a07d1684 to your computer and use it in GitHub Desktop.
Add a Currency symbol before the donation input field in Direct Stripe
add_filter( 'direct_stripe_donation_input', function( $input ){
$symbol = '<span style="font-size: 1.2em;">$ </span>'; // Edit the symbol to suit your currency
$input = $symbol . $input;
return $input;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment