你有一个WooCommerce商店,但你不想付款?那很整齐!请您在阅读该帖后提醒我在您的网站上下订单!
很严重的是,许多WooCommerce商店老板都有一家商店,根本不需要付款。客户下订单和付款不由WooCommerce处理,或根本不处理。并且有一种超级简单的方法可以立即禁用所有支付网关,无需插件,无需拉头。解决方案只是一行代码添加到主题文件夹中名为functions.php的文件中,或者使用像代码片段这样的插件。
<?php // Do not include this if already open! Code goes in theme functions.php. // Disable all payment gateways on the checkout page and replace the "Pay" button by "Place order" add_filter( 'woocommerce_cart_needs_payment', '__return_false' );
而繁荣,结账页面现在显示一个可爱的“下订单”按钮,没有更多的支付网关......这是一个圣诞奇迹!