根据选定的付款方式在结账时更新WoodCommere总价值

时间:2018-08-29 作者:Rowan Mamdouh

我有两种付款方式。。在其中一篇文章中,我添加了额外的费用,如何触发WooCommerce Ajax,该Ajax更新了更改付款方式的运费计算?

1 个回复
最合适的回答,由SO网友:Rowan Mamdouh 整理而成

使用jQuery解决

jQuery( document ).ready(function() {
  jQuery(document).on(\'change\',\'#payment\',function(){
    jQuery( \'body\' ).trigger( \'update_checkout\' );
   });

});

结束

相关推荐