Turn off Pay Later -- SOLVED!

Is there a way to turn off the “Pay Later” option in the PayPal AddOn?

Client doesn’t want that available.

Response I got was to add some PHP code to the functions.php file. Code below

add_filter( ‘gform_ppcp_disable_funding’, ‘ppcp_disable_credit’ );
function ppcp_disable_credit( $disabled_funding ) {
$disabled_funding[] = ‘credit’;
return $disabled_funding;
}