tech support very nicely sent me a filter that should remove the excess buttons and I have added to my child themes function.php but… still seeing buttons. What am I doing wrong - any suggestions?
add_action( ‘gform_ppcp_disable_funding’, function( $disabled_funding ) {
$disabled_funding = ‘ideal’;
$disabled_funding = ‘bancontact’;
$disabled_funding = ‘giropay’;
$disabled_funding = ‘eps’;
$disabled_funding = ‘sofort’;
return $disabled_funding;
} );