Woocommerce:禁用付款方式与交付成本

时间:2013-05-08 18:55:38

标签: wordpress woocommerce

当我选择交货成本作为发货方式时,我遇到了问题:paypal按钮不会消失,因此用户可以支付两次,这是一种不良行为。

我附上了一张图片来澄清我的问题,因为我在网上搜索但我找不到解决方案。

enter image description here

由于

1 个答案:

答案 0 :(得分:1)

如何做到这一点的一个好方法是通过jQuery。将以下内容放在文档中

<script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>

然后找到设置结帐页面的文件并输入以下内容:

$(document).ready(function() {
    if ($('input[name=your_radio_name]:checked').val() == "the value when the element should be hidden") {
        $('#id_of_the_element_that_should_be_hidden').hide();
    });
});