WebsiteBaker 2.13.8 is now available!
R.I.P Dietmar (luisehahne) and thank you for all your valuable work for WBhttps://forum.websitebaker.org/index.php/topic,32355.0.html
1. The link you have used to enter the PayPal system contains an incorrectly formatted item amount.[…] This issue is though, once the BUY button is clicked and the information is sent to the Paypal payment page I get the error: The link you have used to enter the PayPal system contains an incorrectly formatted item amount. […]
'amount' => $order_total,
'amount' => $_SESSION['bakery']['order_total'],
// Format output for display$f_sales_tax = number_format($sales_tax, 2, $setting_dec_point, $setting_thousands_sep);$f_order_total = number_format($order_total, 2, $setting_dec_point, $setting_thousands_sep);
// Format output for display$f_sales_tax = number_format($sales_tax, 2, $setting_dec_point, $setting_thousands_sep);$f_order_total = number_format($order_total, 2, $setting_dec_point, $setting_thousands_sep);// Put rounded order total into the session var for later use with payment gateways$_SESSION['bakery']['order_total'] = round($order_total, 2);