我想在客户选择合适的运费时显示一些额外的功能 - 例如,如果他们选择统一费率,我想设置php或jquery标志
$flat_rate = true;
怎么做?
答案 0 :(得分:0)
您可以在
中添加代码应用程序/设计/前端/ [主题] /default/template/checkout/onepage/shipping_method/available.phtml
<script>
jQuery(document).ready(function(){
jQuery('[name="shipping_method"]').click(function(){
/*write your code here, clicked button of shipping method is checked or not*/
});
});
</script>