-
-
Save bmoredrew/58fb50c7471787ddf0bf 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 | |
/** | |
* Custom PayPal Adaptive Payments args. | |
* | |
* @param array $args | |
* @param WC_Order $order | |
* @return array | |
*/ | |
function custom_woocommerce_paypal_ap_payment_args( $args, $order ) { | |
$args['receiverList'] = array( | |
'receiver' => array( | |
array( | |
'amount' => '40.00', | |
'email' => '[email protected]', | |
// 'primary' => 'true' // use this only for Chained Payment. | |
) | |
), | |
'receiver' => array( | |
array( | |
'amount' => '15.00', | |
'email' => '[email protected]' | |
) | |
), | |
'receiver' => array( | |
array( | |
'amount' => '60.00', | |
'email' => '[email protected]' | |
) | |
) | |
); | |
return $args; | |
} | |
add_filter( 'woocommerce_paypal_ap_payment_args', 'custom_woocommerce_paypal_ap_payment_args', 10, 2 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment