php [WooCommerce Core]为所有交易添加标准的$ value附加费

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php [WooCommerce Core]为所有交易添加标准的$ value附加费相关的知识,希望对你有一定的参考价值。

add_action( 'woocommerce_cart_calculate_fees','wc_add_surcharge' ); 
function wc_add_surcharge() { 
global $woocommerce; 

if ( is_admin() && ! defined( 'DOING_AJAX' ) ) 
return;

$county = array('US');
// change the $fee to set the surcharge to a value to suit
$fee = 1.00;

if ( in_array( WC()->customer->get_shipping_country(), $county ) ) : 
    $woocommerce->cart->add_fee( 'Surcharge', $fee, true, 'standard' );  
endif;
}

以上是关于php [WooCommerce Core]为所有交易添加标准的$ value附加费的主要内容,如果未能解决你的问题,请参考以下文章

php [WooCommerce Core]为所有交易添加标准的$ value附加费

php [WooCommerce Core]为所有交易添加基于百分比的附加费

php [WooCommerce Core]为所有交易添加基于百分比的附加费

php [WooCommerce Core]为所有交易添加基于百分比的附加费

php [WooCommerce Core]为店面删除Breadcrumbs

php [WooCommerce Core]为店面删除Breadcrumbs