WebsiteBaker Support (2.8.x) > Bakery Shop
Bakery: Small Shop Module (ORIGINAL TOPIC)
westonjeff:
Sorry if this is a stupid question, but can some type of order detail or site info be passed to the PayPal system?
Something as simple the page name that the order's coming from would be alright. Anyone done this?
TIA for any help -- as mentioned in an earlier post, I'm no PHP guru. :|
itsnick:
I keeping getting this error from PayPal: "Incorrectly formatted item amount"
I've only noticed it on items were tax would make the total come out to more than 2 places, i.e. $1.00 plus 7.5% tax = $1.075
Is there a fix for this or maybe a way to round to only two places.
freeSbee:
Hi itsnick
--- Quote from: itsnick on March 12, 2010, 07:26:36 AM ---I keeping getting this error from PayPal: "Incorrectly formatted item amount"
I've only noticed it on items were tax would make the total come out to more than 2 places, i.e. $1.00 plus 7.5% tax = $1.075
Is there a fix for this or maybe a way to round to only two places.
--- End quote ---
Search view_summary.php, line 743:
--- Code: ---// Put order total into the session var for use with payment gateways
$_SESSION['bakery']['order_total'] = $order_total;
--- End code ---
Replace by:
--- Code: ---// Put rounded order total into the session var for use with payment gateways
$_SESSION['bakery']['order_total'] = round($order_total, 2);
--- End code ---
Regards Christoph
freeSbee:
New Version of Bakery:
VERSION 1.5.1 (03/13/2010)
VERSION HISTORY
Bakery 1.5.1 version history
KNOW HOW
Further information can be found on the Bakery Website.
DOWNLOAD
Download from the Bakery Website.
PLEASE NOTE
Please read the upgrade notes when upgrading to version 1.5.1.
Christoph
snark:
is there an easy way to change the order of the products... I want every new item to be at the top of the list
Navigation
[0] Message Index
[#] Next page
[*] Previous page
Go to full version