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

Posted

tags:

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

/**
 * Add a 1% surcharge to your cart / checkout
 * change the $percentage to set the surcharge to a value to suit
 * Uses the WooCommerce fees API
 *
 * Add to theme functions.php
 */
add_action( 'woocommerce_cart_calculate_fees','woocommerce_custom_surcharge' );
function woocommerce_custom_surcharge() {
  global $woocommerce;

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

	$percentage = 0.01;
	$surcharge = ( $woocommerce->cart->cart_contents_total + $woocommerce->cart->shipping_total ) * $percentage;	
	$woocommerce->cart->add_fee( 'Surcharge', $surcharge, true, '' );

}

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

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

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

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

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

php [WooCommerce Core]为店面删除Breadcrumbs

php [WooCommerce Core]为店面删除Breadcrumbs