首页 > 解决方案 > 如何从 woo commerce 结帐页面隐藏货到付款方式?

问题描述

当客户选择任何产品的任何插件时,如何从 woo commerce 结帐页面隐藏货到付款付款方式?

标签: wordpresswoocommercepayment-method

解决方案


/* 隐藏免费送货请试试下面的代码 */

function hide_free_shipping( $rates, $package ) { 
   
    if (  ) // as per your requirement add condition here
    { 
        foreach( $rates as $rate_id => $rate_val ) { 
            if ( 'free_shipping' === $rate_val->get_method_id() ) { 
                unset( $rates[ $rate_id ] );
            } 
        } 
    } 
    return $rates; 
} 
add_filter( 'woocommerce_package_rates', 'hide_free_shipping', 100, 2 );

推荐阅读