Created
July 1, 2014 19:46
-
-
Save claudiosanches/cdf77f6b2be0a6d92937 to your computer and use it in GitHub Desktop.
Custom PayPal Adaptive Payments args
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
If you get only last amount than try this code
EX:
$receivers => array(
array(
'amount'=>reviever amount FIRST here,
'email'=> reviever paypal FIRST email here here
),
array(
'amount'=>reviever amount SECOND here,
'email'=> reviever paypal SECOND email here here
),
array(
'amount'=>reviever amount THIRD here,
'email'=> reviever paypal THIRD email here here
)
);