You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just wondering if you considered this when doing the PayPal checkout integration.
At the moment, people have to enter their contact details twice if we want to collect them in CiviCRM. Once when they fill in the form on the website, and again when they are on the PayPal popup.
It would be good to either send details on CiviCRM to PayPal or receive the billing info from PayPal - any thoughts on how we might do that?
The text was updated successfully, but these errors were encountered:
<script>
paypal.Buttons({createOrder: function(data,actions){// This function sets up the details of the transaction, including the amount and line item details.returnactions.order.create({purchase_units: [{amount: {value: '0.01'}}]});},onApprove: function(data,actions){// This function captures the funds from the transaction.returnactions.order.capture().then(function(details){// This function shows a transaction success message to your buyer.alert('Transaction completed by '+details.payer.name.given_name);});}}).render('#paypal-button-container');
//This function displays Smart Payment Buttons on your web page.
</script>
It seems like details contain lots of goodies that are designed to be used to populate billing fields.
Just wondering if you considered this when doing the PayPal checkout integration.
At the moment, people have to enter their contact details twice if we want to collect them in CiviCRM. Once when they fill in the form on the website, and again when they are on the PayPal popup.
It would be good to either send details on CiviCRM to PayPal or receive the billing info from PayPal - any thoughts on how we might do that?
The text was updated successfully, but these errors were encountered: