Hello all,
i would like our checkout to have the shipping methods to be in a selection box instead of a radio group.
We have over 20 stores and would like to give customer the option to select from a store instead of delivery saving on delivery cost. At the moment, the list is rather long and doesn't look nice.
Thanks.
This is within a hook so you can use “my changes” to add it or you can just edit the template.
/skins/your_skin/customer/views/checkout/components/steps/step_three.tpl
{$lang.text_no_shipping_methods} {hook name="checkout:select_shipping"}
{if !$cart.shipping_failed}
{include file="common_templates/subheader.tpl" title=$lang.select_shipping_method}
{include file="views/checkout/components/shipping_rates.tpl" no_form=true display="select"}
{else}
{/if}
{/hook}