Hi,
Take a look in html code of select shipment page
url: index.php?view=cart&task=edit_shipment&option=com_virtuemart
===
<input type="radio" name="virtuemart_shipmentmethod_id" id="shipment_id" " value="1" ><label for="shipment_id_1"><span class="vmshipment"><span class="vmshipment_name">Default Shipment</span><span class="vmshipment_cost"> ($0.00)</span></span></label>
===
As you can see, the id attribute for <input> element was wrong, we cannot click to its label to select a shipment
Just a tiny thing
:)
Hi,
Txs for reporting.
This issue has been solved yesterday.
Another post reported that error.
I now have only 1 shipment method. But how come that i still don't see this shipment method to select on the page ?
Do i need to create my shipment method again ?
Hi,
Please don't duplicate your post.
I already answered you in your previous post:
http://forum.virtuemart.net/index.php?topic=95009.0
@alatak:
Seem that it is not fixed all in RC 3:
==
<input type="radio" name="virtuemart_shipmentmethod_id" id="shipment_id" value="1" ><label for="shipment_id_1"><span class="vmshipment"><span class="vmshipment_name">Default Shipment</span><span class="vmshipment_cost"> ($0.00)</span></span></label>
<br /><input type="radio" name="virtuemart_shipmentmethod_id" id="shipment_id" value="2" ><label for="shipment_id_2"><span class="vmshipment"><span class="vmshipment_name">Other Shipment</span><span class="vmshipment_cost"> ($0.00)</span></span></label>
===
As you can see, the "for" attribute of <label> tag is not the same value as the "id" of <input> tag
Hi,
Txs you very much. Fixed.