Shopsite 7.1.4 pro
We have a custom shipping add-on that is returning shipping options with similar names, and when one option is chosen the similar named option's price is used in the cart.
Here is part of the HTML from the cart form returned from the add-on:
<input type=radio name="shipping" value="apiUPS Next Day Air Saver">
<input checked type=radio name="shipping" value="apiUPS Next Day Air">
Since the Shipping API does not allow the specification of a ID that is different from the label, it appears that the cart form is getting confused as to which option is being selected.
I noticed that the built in UPS shipping returns HTML with unique values:
<input type=radio name="shipping" value="ups13">
<input type=radio name="shipping" value="ups01">
Is there a fix or work around?