i’m using the checkout addon, and removed the Pay Later option using code in the docs. I have for choices PP, Venmo, and remains is a row with “iDEAL”. current code is
add_action( 'gform_ppcp_disable_funding', function( $disabled_funding ) {
// $disabled_funding[] = 'iDEAL'; // PayPal Credit (US, UK).
$disabled_funding[] = 'paylater'; // Pay Later (US, UK), Pay in 4 (AU), 4X PayPal (France), Später Bezahlen (Germany).
return $disabled_funding;
} );
but i need to remove both paylater and iDEAL, and looking to see what people are using.