我希望在客户达到付款选项时显示已选择货到付款选项的付款方式,因此如果他们想要使用COD,他们可以继续下一步,如果他们想要更改,他们可以选择他们的所需的付款方式。我不知道如何实现这一点,我尝试谷歌但没有任何帮助。请帮忙。
答案 0 :(得分:0)
使用Jquery ....
例如,如果单选按钮的ID是“payment_cash_on_delivery”,
$("#payment_cash_on_delivery").prop( "checked", true );
在结帐模板或页脚中包含此脚本。
jQuery(document).ready(function() {
jQuery("#payment_cash_on_delivery").prop( "checked", true );
});