magento如何检查选择了哪个交付选项

时间:2014-11-13 10:11:53

标签: magento

我想在客户选择合适的运费时显示一些额外的功能 - 例如,如果他们选择统一费率,我想设置php或jquery标志

$flat_rate = true;

怎么做?

1 个答案:

答案 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>