Hey, i have added the Smart Buttons of Paypal to my Website. Now i have tested a Payment and seen, that the Price is showing without a Productdescription. How i can add there the Productname to the Price? And: If the Visitor choose 3 Products. How can i add the Prices as 3 Products to Paypal with their Price? This is my Code: <script> paypal.Buttons({ createOrder: function(data, actions) { return actions.order.create({ purchase_units: [{ amount: { value: <?= $_SESSION["gesamtpreis"]; ?> } }] }); }, onApprove: function(data, actions) { return actions.order.capture().then(function(details) { }); } }).render('#paypal-button-container'); </script>
... View more