WooCommerce - 为购买的每件商品添加新商品到购物车

时间:2015-04-21 21:42:33

标签: php wordpress woocommerce

当前情况: 我国的一项新法律要求我为几乎所有客户想要购买的电器产品添加“绿色印章”。

目前我只有一个百分比,如下所示。

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

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

    $percentage = 0.0001;
    $surcharge = ( WC()->cart->cart_contents_total + WC()->cart->shipping_total ) * $percentage;    
    WC()->cart->add_fee( 'Green Stamp', $surcharge, true, 'standard' );

}

如何为客户添加到购物车的所有产品添加标准价格的定制绿色邮票产品,以某些类别减少产品?!

编辑:$ woocommerce已弃用

0 个答案:

没有答案