Magento Pre在一页结账时选择付款方式为送货卡

时间:2015-05-26 05:51:15

标签: magento checkout onepage-checkout

我希望在客户达到付款选项时显示已选择货到付款选项的付款方式,因此如果他们想要使用COD,他们可以继续下一步,如果他们想要更改,他们可以选择他们的所需的付款方式。我不知道如何实现这一点,我尝试谷歌但没有任何帮助。请帮忙。

1 个答案:

答案 0 :(得分:0)

使用Jquery ....

  1. 检查元素
  2. 查找班级或ID
  3. 页面加载时默认选中按钮
  4. 例如,如果单选按钮的ID是“payment_cash_on_delivery”,

    $("#payment_cash_on_delivery").prop( "checked", true );
    

    在结帐模板或页脚中包含此脚本。

    更新

    jQuery(document).ready(function() {
     jQuery("#payment_cash_on_delivery").prop( "checked", true );
    });