Woocommerce计算运输强制性

时间:2018-02-04 12:35:05

标签: checkbox woocommerce checkout shipping

[IMG] http://i66.tinypic.com/2laagkw.png[/IMG] http://i66.tinypic.com/2laagkw.png

在购物车页面页面上,我希望计算运费是强制性的。我使用统一费率运费。客户有时会错过计算运费的链接,然后在不添加运费的情况下继续结账。

然后在计算运输链接上方,它说"没有可用的运输方式。如果您需要任何帮助,请查看您的地址或与我们联系。" - 我想删除它或将其更改为其他内容。

[IMG] http://i68.tinypic.com/oqf692.png[/IMG] http://i68.tinypic.com/oqf692.png

然后,当您转到结帐页面时,我默认显示了收件人详细信息,但我想删除标题左侧的复选框。它应该始终显示。任何有关这方面的帮助都将非常感激,因为我只是开始使用网页设计。

1 个答案:

答案 0 :(得分:1)

add_action('wp_head','prevent_proceed_to_checkout');
function prevent_proceed_to_checkout() { 
echo '  <script>
            jQuery(function(){  
                jQuery(".woocommerce-cart .wc-proceed-to-checkout a.checkout-button").on("click",function(e){
                    var _this = this;
                    alert("Please calculate shipping!");
                    e.preventDefault();
                    jQuery(".shipping-calculator-form .button").on("click",function(){
                        jQuery(_this).off();
                    });
                 });
            });
        </script>';
}

我现在只需删除该复选框。