magento -- 结账时默认选中其中一种配送方式

用Magento给国内用户做中文站,各种各样的需求都会有,一个客户要求前台结账时某一种快递方式是默认选中的,作为推荐使用的一种。举个例子,前台可以选择申通、圆通和顺丰作为快递方式,客户会要求申通是默认选中的,这样既对自己有利,也方便客户。

下面是修改方案:

打开文件/template/checkout/onepage/shipping_method/available.phtml,找到如下代码

getCode()===$this->getAddressShippingMethod()) echo ' checked="checked"' ?> class="radio" /> 

替换成

getCode()== 'xxxx'):?> getAddressShippingMethod()) echo ' checked="checked"' ?> class="radio" /> getCode()===$this->getAddressShippingMethod()) echo ' checked="checked"' ?> class="radio" />  

其中xxxx代表你要默认选中的那种配送方式的code,比如tablerate_bestway是代表Table Rate这种方式

你可能感兴趣的:(magento1.4,magento,input,class,table)