No, there is not a way to configure ShopSite to do this. The best thing
to do would probably be to include the Quantity box on the store pages
so that the shopper can indicate what quantity they want without having
to 'add to cart' multiple times.
Also, if you are processing orders based on an email notification and
you don't particularly care about the order screen itself, you could
create a custom cgi for the Order API that writes the email notification
and within that cgi loop through the products and combine the
duplicates. The best way to do this is probably to store the first
product/line item (or the values you need from it anyway) in an array,
then compare the name (or SKU) of each additional product/line item to
the name value in the array and if it is not there add the product to
the array, if it is there just increment the quantity value for that
product that already exists in the array. Then when you are ready to
write out the email, just make a loop that goes through your array.
-Loren
Sherry Land wrote:
Let me rephrase my Q...
Can anyone tell me if there is a way in ShopSite to keep multiple
quantity of the same item on the same order line?
For example, if I "Add To Cart" item ABC twice, I need this to be
placed on the order form as
**************
Qty Item
2 ABC
instead of
**************
Qty Item
1 ABC
1 ABC
Thanks,
Sherry Land
webmaster@neuralog.com