Cargo is now in alpha! Cargo is replacing Simple Commerce. Read the post to find out more  

Shipping

Get Shipping Methods

This tag can be used to give the user the option to select which shipping method they'd like their order to go through. The tag will loop through all of your configured shipping methods, see if they are available for the order's shipping address and if they are, the details and price will be outputted.

<select name="shipping_method" value="{{ old:shipping_method }}">
<option value="" disabled selected>Select a Shipping Method</option>
{{ sc:shipping:methods }}
<option value="{{ handle }}">{{ name }} - {{ cost }}</option>
{{ /sc:shipping:methods }}
</select>
<select name="shipping_method" value="{{ old:shipping_method }}">
<option value="" disabled selected>Select a Shipping Method</option>
{{ sc:shipping:methods }}
<option value="{{ handle }}">{{ name }} - {{ cost }}</option>
{{ /sc:shipping:methods }}
</select>