Skip to content

Instantly share code, notes, and snippets.

@pramodjodhani
Last active April 30, 2024 04:14
Show Gist options
  • Save pramodjodhani/bcb6d435bfea5e38807587dccc0f71ae to your computer and use it in GitHub Desktop.
Save pramodjodhani/bcb6d435bfea5e38807587dccc0f71ae to your computer and use it in GitHub Desktop.
Gravity forms stripe - charge custom amount
<?php
add_filter( 'gform_stripe_charge_pre_create', function ( $charge, $feed, $submission_data, $form, $entry ) {
// Enter the amount in cents. 600 = $6.00.
$charge['amount'] = 600;
return $charge;
}, 10, 5);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment