Hello Mark.
Today I've installed a new version of Shopperpress.
And found a bug.
When I'm adding the same item to cart (one by one) Shopperpress doesn't want to sum this items in cart, it creates a new items with this id.
In order details I see this: this is the same product, at the first time with correct wordpress-post-id, second time it gives me fantastic-wordpress-post-id:
Qty: 2 x Item ID: 55 (Knives for kitchen)
Qty: 500 x Item ID: 9100013 ()
I have this code in shopperpress/functions/func_callback.php (near line 105):
// MAKE ORDER DATA
$order['data'] ="";
$order['items'] ="";
foreach($_SESSION['ddc']['productsincart'] as $key => $value) {
$order['data'] .="Qty: ".$value." x Item ID: ".$key." (".getProductName($key).")
";
}
I modifed code a little bit.
But you can test it at your shopperpress.
I hope for your understanding and praying for you to fix this bug, it's very discusting.
Thanks for your work.