• Resolved azael2k

    (@azael2k)


    Hi.

    We are using your plugin along with Stripe as a payment method. If we add some custom fields like “VAT , Company name” and use the Push Form Data to Stripe then all of these values go directly to Meta Fields area in Stripe. Is there any way to send them to Billing Details or Customer Object rather then Meta Fields?

    Thanks!

Viewing 1 replies (of 1 total)
  • Plugin Support Amimul Ihsan

    (@amimulihsanmahdi)

    Hello @azael2k,

    You can customize stripe checkout arguments using the below filter hook:

    add_filter('fluentform/stripe_checkout_args', function($checkoutArgs, $submission, $transaction, $form){
    //write your code here;

    return $checkoutArgs;
    }, 10, 4);

    Thank you

Viewing 1 replies (of 1 total)

The topic ‘Stripe API Question’ is closed to new replies.