- 🇺🇸United States j_ten_man
This patch needs work, but don't want to spend a bunch of time on it if others think that we should go a different route (for example, using an Event vs alter hook).
An example implementation using this hook:
<?php /** * Implements hook_commerce_stripe_payment_intent_create_alter(). */ function hook_commerce_stripe_payment_intent_create_alter(&$intent_array, $order, $payment = NULL) { // Allow a free order to process. if (!$intent_array['amount']) { // Force manual capture - a free order shouldn't automatically be charged. $intent_array['capture_method'] = 'manual'; // Get the price before discounts as the authorization amount. $intent_array['amount'] = \Drupal::service('commerce_price.minor_units_converter')->toMinorUnits($order->getSubtotalPrice()); // $.50 is the minimum amount required by Stripe. if (!$intent_array['amount']) { $intent_array['amount'] = 50; } } }
- Status changed to Closed: duplicate
about 2 years ago 1:31pm 7 March 2023 - 🇬🇧United Kingdom jonathanshaw Stroud, UK
I think this is a duplicate of ✨ Allow customising payment intent attributes and metadata Fixed which just got committed. If it is not, please explain why.