在WooCommerce中隐藏基于产品类型的付款方式

时间:2017-09-20 17:30:39

标签: php wordpress woocommerce payment-gateway product

在WoCommerce中,我想禁用特定的付款方式,并在WooCommerce中显示订阅产品的特定付款方式(反之亦然)。

This是我们发现的最接近但我没有做到的事情。

是的,有插件可以做到这一点,但是我们希望在不使用其他插件的情况下实现这一点,并且不会让我们的样式表变得比现在更噩梦。

对此有任何帮助吗?

2 个答案:

答案 0 :(得分:8)

以下是 woocommerce_available_payment_gateways 过滤器挂钩中自定义挂钩功能的示例,我可以根据购物车项目(产品类型)禁用付款网关:

add_filter('woocommerce_available_payment_gateways', 'conditional_payment_gateways', 10, 1);
function conditional_payment_gateways( $available_gateways ) {
    // Not in backend (admin)
    if( is_admin() ) 
        return $available_gateways;

    foreach (WC()->cart->get_cart() as $cart_item_key => $cart_item ) {
        $prod_variable = $prod_simple = $prod_subscription = false;
        // Get the WC_Product object
        $product = wc_get_product($cart_item['product_id']);
        // Get the product types in cart (example)
        if($product->is_type('simple')) $prod_simple = true;
        if($product->is_type('variable')) $prod_variable = true;
        if($product->is_type('subscription')) $prod_subscription = true;
    }
    // Remove Cash on delivery (cod) payment gateway for simple products
    if($prod_simple)
        unset($available_gateways['cod']); // unset 'cod'
    // Remove Paypal (paypal) payment gateway for variable products
    if($prod_variable)
        unset($available_gateways['paypal']); // unset 'paypal'
    // Remove Bank wire (Bacs) payment gateway for subscription products
    if($prod_subscription)
        unset($available_gateways['bacs']); // unset 'bacs'

    return $available_gateways;
}

代码放在活动子主题(或主题)的function.php文件中,或者放在任何插件文件中。

所有代码都在Woocommerce 3+上进行测试并且有效。

  

这只是向您展示事物如何运作的一个例子。你将不得不适应它

答案 1 :(得分:0)

这段代码对我来说非常有用,但是我必须修复其中的错误:该行

 $prod_variable = $prod_simple = $prod_subscription = false;

必须放在FOREACH之前(否则),否则每次执行新项目时都会重置标志。就我而言,每当订购产品出现在购物车上时,我都需要取消设置特定的付款方式。实际上,此代码仅在只有一个订阅产品的情况下才有效。如果我在购物车上放了其他物品,该标志将再次变为false,并且将加载付款方式。将线放在FOREACH外部将解决此问题。