Last active
April 23, 2018 17:00
-
-
Save Shelob9/88b296e6b8c9886d90db6fc058c19170 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
Plugin Name: Caldera Forms PayPal Customization | |
*/ | |
add_filter( 'cf_paypal_request', function( $request ){ | |
$request['SOLUTIONTYPE'] = 'Sole'; | |
$request['LANDINGPAGE'] = 'Billing'; | |
return $request; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment