php 在结账页面上,总计3%+ 0.30美分的费用

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 在结账页面上,总计3%+ 0.30美分的费用相关的知识,希望对你有一定的参考价值。

/**
 * Apply 3% + 0.30 cent fee to total, on the checkout page
 */
add_action( 'woocommerce_cart_calculate_fees', 'woocommerce_custom_surcharge' );
function woocommerce_custom_surcharge( $cart ) {
    if ( is_admin() && ! defined( 'DOING_AJAX' ) )
        return;

    $percentage = 0.03;
    $fixed_fee  = 0.3;

    $percentage_fee = ( $cart->cart_contents_total + $cart->shipping_total ) * $percentage;
    $surcharge  = $fixed_fee + $percentage_fee;

    $cart->add_fee( 'Processing Fee', $surcharge, true );
}

以上是关于php 在结账页面上,总计3%+ 0.30美分的费用的主要内容,如果未能解决你的问题,请参考以下文章

在 XAMPP 中将 PHP 7.0.9 升级到 PHP 7.0.30 后 Apache 未启动

使用 PayPal 结账的更好方法?

centos7.5环境下编译安装php7.0.30并安装redis和mongo扩展

沃茨水工业宣布季度股息派发

在 WooCommerce 结帐页面中自定义文本“总计”

在新页面上重置“运行总计字段”