Hi,
I want to activate paypal as a payment method using stripe. But Paypal is greyed out in stripe. According to the documentation I need to add the following code:
add_filter( ‘gform_stripe_checkout_payment_methods’, function( $payment_methods, $feed, $form ) {
return array( ‘paypal’ );
}, 10, 3);
But when doing so, the payment form wont load and gives me an error there is something wrong with the form.
Do I need to add anything else?