在Woocommerce中的购物车商品上按产品类别同步定制产品价格

时间:2018-03-24 07:09:32

标签: php woocommerce cart hook-woocommerce price

我必须根据类别安排产品价格。因此,A类中的每种产品的价格都是5, B类产品价格为10,c类产品价格为15。

在此安排之后,当产品添加到购物车时,我必须将产品价格乘以我们的保证金。目前我们的保证金是2.5。

因此,我们在fucntions.php

中编写以下代码
add_filter('woocommerce_product_get_price', 'product_price_new', 10, 2);
 function product_price_new($price, $product) {
     if(!is_cart()){
     if(has_term( 'accessories', 'product_cat' ,$product->id)){  $price=5; }
     if(has_term( 'hoodies', 'product_cat' ,$product->id)){ $price=10; }
     if(has_term( 'tshirts', 'product_cat' ,$product->id)){ $price=15;}

     }
     return $price;
 }

add_filter( 'woocommerce_add_cart_item_data', 'margin_price', 30, 3 );
function margin_price( $cart_item_data, $product_id, $variation_id ) {
    $the_id = $variation_id > 0 ? $variation_id : $product_id;
    $product = wc_get_product( $the_id );
    $product_price = (float) $product->get_price(); 
    $cart_item_data['calculated-price'] = $product_price*2.5;
    return $cart_item_data;
}


add_action( 'woocommerce_before_calculate_totals', 'add_caculted', 20, 1 );
function add_caculted( $cart ) {
    if ( is_admin() && ! defined( 'DOING_AJAX' ) )
        return;

    // Loop through cart items
    foreach ( $cart->get_cart() as $cart_item ){
        if( ! empty( $cart_item['calculated-price'] ) ){
            // Set the calculated item price (if there is one)
            $cart_item['data']->set_price( $cart_item['calculated-price'] );

        }
    }
}

请看看会发生什么。

例如,如果我们尝试在类别连帽衫中添加产品,那么价格将为10 * 2.5 = 25

  

(1)在购物车页面产品价格显示25,这是正确的。   [mywebsite.com/cart]

     

(2)在结帐页面中,产品价格显示为10,因此总数为   来吧10。这是错的应该是25。

     

(3)在显示菜单附近的迷你网中,显示1 * 10,小计为10,但需要显示1 * 25和小计= 25

enter image description here

请帮助解决此问题。我错过了什么?

我在默认的woocommerce storfront主题中尝试了所有这些代码。 https://woocommerce.com/storefront/

1 个答案:

答案 0 :(得分:1)

仅适用于简单产品,您可以尝试以下方式:

// Utility function
function get_special_product_category_prices( $price, $product_id ) {
    // HERE your prices by product category
    $prices_by_cat = array( 5 => 'accessories', 10 => 'hoodies', 15 => 't-shirts' );
    foreach( $prices_by_cat as $key_price => $term ){
        if( has_term( $term, 'product_cat', $product_id ) )
            return $key_price;
    }
    return $price;
}

// Alter product displayed prices (for simple products only)
add_filter( 'woocommerce_get_price_html', 'alter_displayed_price_html', 20, 2 );
function alter_displayed_price_html( $price, $product ) {

    if( $product->is_type('simple') ){
        $raw_price = get_special_product_category_prices( $product->get_price(), $product->get_id() );

        if( $raw_price > 0 )
            $price = wc_price( wc_get_price_to_display( $product, array( 'price' => $raw_price ) ) );
    }
    return $price;
}

add_filter( 'woocommerce_add_cart_item_data', 'add_calculated_margin_price', 30, 3 );
function add_calculated_margin_price( $cart_item_data, $product_id, $variation_id ) {
    $the_id = $variation_id > 0 ? $variation_id : $product_id;
    $product = wc_get_product( $the_id );

    $product_price = (float) get_special_product_category_prices( $product->get_price(), $product_id );

    $cart_item_data['calculated-price'] = $product_price * 2.5;
    return $cart_item_data;
}

add_action( 'woocommerce_before_calculate_totals', 'set_caculated_price', 20, 1 );
function set_caculated_price( $cart ) {
    if ( is_admin() && ! defined( 'DOING_AJAX' ) )
        return;

    if ( did_action( 'woocommerce_before_calculate_totals' ) >= 2 )
        return;

    // Loop through cart items
    foreach ( $cart->get_cart() as $cart_item ){
        if( ! empty( $cart_item['calculated-price'] ) ){
            // Set the calculated item price (if there is one)
            $cart_item['data']->set_price( $cart_item['calculated-price'] );
        }
    }
}

代码放在活动子主题(或主题)的function.php文件中。它应该工作。