问题:在 WooCommerce 中选择“本地取货”时,不给打折产品打折

我在 Woocommerce](https://stackoverflow.com/questions/52630355/local-pickup-shipping-option-custom-percentage-discount-in-woocommerce/52631612#52631612)_ 中使用 _[本地取货配送选项自定义百分比折扣 _ 在购物车和结帐时选择“本地取货”时添加折扣的答案代码。

我已将折扣设置为 20%。

如果产品已经打折,我如何更改此代码以从计算中排除产品?

例如,购物车中有 3 种产品:2 种具有基本价格的产品和 1 种具有折扣的产品。如何确保选择“本地取货”时的 20% 折扣仅适用于有底价的产品?

有什么帮助吗?

解答

而不是使用$cart->get_subtotal()

$cart_item['line_subtotal']添加到$line_subtotal中,如果产品不是is_on_sale()(折扣)

/**
* Discount for Local Pickup
*/
function custom_discount_for_pickup_shipping_method( $cart ) {
    if ( is_admin() && ! defined( 'DOING_AJAX' ) )
        return;

    $percentage = 20; // Discount percentage

    $chosen_shipping_method_id = WC()->session->get( 'chosen_shipping_methods' )[0];
    $chosen_shipping_method    = explode(':', $chosen_shipping_method_id)[0];

    // Only for Local pickup chosen shipping method
    if ( strpos( $chosen_shipping_method_id, 'local_pickup' ) !== false ) {

        // Set variable
        $new_subtotal = 0;

        // Loop though each cart items and set prices in an array
        foreach ( $cart->get_cart() as $cart_item ) {

            // Get product
            $product = wc_get_product( $cart_item['product_id'] );

            // Product has no discount
            if ( ! $product->is_on_sale() ) {
                // line_subtotal
                $line_subtotal = $cart_item['line_subtotal'];

                // Add to new subtotal
                $new_subtotal += $line_subtotal;
            }
        }

        // Calculate the discount
        $discount = $new_subtotal * $percentage / 100;

        // Add the discount
        $cart->add_fee( __('Discount') . ' (' . $percentage . '%)', -$discount );
    }
}
add_action( 'woocommerce_cart_calculate_fees', 'custom_discount_for_pickup_shipping_method', 10, 1 );
Logo

WooCommerce社区为您提供最前沿的新闻资讯和知识内容

更多推荐