簡體   English   中英

在WooCommerce中設置變量產品的計算價格

[英]Set a calculated price for variable products in the WooCommerce

在Woocommerce中,我使用自定義字段來計算產品的價格,基於此代碼 - 在Woocommerce中將自定義字段添加到自定義產品計算價格中 感謝LoicTheAztec的幫助。

// Add a custom field before single add to cart
add_action( 'woocommerce_before_add_to_cart_button', 'custom_product_price_field', 5 );
function custom_product_price_field(){
echo '<div class="custom-text text">
<h3>Rental</h3>
<label>Start Date:</label>
<input type="date" name="rental_date" value="" class="rental_date" />
<label>Period Rental:</label>
<select name="custom_price" class="custom_price">
    <option value="30" selected="selected">2 days</option>
    <option value="35">4 days</option> 
</select>
</div>';
}

// Get custom field value, calculate new item price, save it as custom cart item data
add_filter('woocommerce_add_cart_item_data', 'add_custom_field_data', 20, 2 );
function add_custom_field_data( $cart_item_data, $product_id ){
if ( isset($_POST['rental_date']) && ! empty($_POST['rental_date']) ){
    $cart_item_data['custom_data']['date'] = $_POST['rental_date'];
}
if ( isset($_POST['custom_price']) && ! empty($_POST['custom_price']) ){
    $product      = wc_get_product($product_id); // The WC_Product Object
    $base_price   = (float) $product->get_regular_price(); // Product reg price
    $custom_price = (float) sanitize_text_field( $_POST['custom_price'] );

    $cart_item_data['custom_data']['base_price'] = $base_price;
    $cart_item_data['custom_data']['new_price'] = $base_price * $custom_price/100;
    $cart_item_data['custom_data']['rental'] = $custom_price;
}
if ( isset($cart_item_data['custom_data']['new_price']) || isset($cart_item_data['custom_data']['date']) ){
    $cart_item_data['custom_data']['unique_key'] = md5( microtime() . rand() ); // Make each item unique
}
return $cart_item_data;
}

// Set the new calculated cart item price
add_action( 'woocommerce_before_calculate_totals', 'extra_price_add_custom_price', 20, 1 );
function extra_price_add_custom_price( $cart ) {
if ( is_admin() && !defined('DOING_AJAX') )
    return;

foreach ( $cart->get_cart() as $cart_item ) {
    if( isset($cart_item['custom_data']['new_price']) )
        $cart_item['data']->set_price( (float) $cart_item['custom_data']['new_price'] );
}
}

// Display cart item custom price details
add_filter('woocommerce_cart_item_price', 'display_cart_items_custom_price_details', 20, 3 );
function display_cart_items_custom_price_details( $product_price, $cart_item, $cart_item_key ){
if( isset($cart_item['custom_data']['new_price']) ) {
    $product        = $cart_item['data'];
    $new_price     = $cart_item['custom_data']['new_price'];
    $product_price  = wc_price( wc_get_price_to_display( $product, array( 'price' => $new_price ) ) ) . '<br>';
    if( isset($cart_item['custom_data']['rental']) ) {
        $product_price .= $cart_item['custom_data']['rental'] == '30' ? __("2 days") : __("4 days");
    }
}
return $product_price;
}

// Display in cart item the selected date
add_filter( 'woocommerce_get_item_data', 'display_custom_item_data', 10, 2 );
function display_custom_item_data( $cart_item_data, $cart_item ) {
if ( isset( $cart_item['custom_data']['date'] ) ){

    $cart_item_data[] = array(
        'name' => __("Chosen date", "woocommerce" ),
        'value' =>   date('d.m.Y', strtotime($cart_item['custom_data']['date'])),
    );
}
if ( isset( $cart_item['custom_data']['rental'] ) ){
    $cart_item_data[] = array(
        'name' => __("Period Rental", "woocommerce" ),
        'value' =>   $cart_item['custom_data']['rental'] == '30' ? __("2 days") : __("4 days"),         
    );
}
return $cart_item_data;
}

我決定創建一個新問題,因為我認為在這種情況下它是合適的。

所有代碼都完全正常,但存在問題。 此代碼適用於簡單的產品,我有很多變化的產品。

在此輸入圖像描述

此代碼未顯示變分產品的價格。 它僅顯示日期和期間。

在此輸入圖像描述

如何解決這個問題呢? 有什么想法嗎?

更新

在您的代碼中,您需要更改woocommerce_add_cart_item_data()函數,以處理產品變體。

還有其他一些其他參數可以在此鈎子中用作$variation_id

代碼:

// Add a custom field before single add to cart
add_action( 'woocommerce_before_add_to_cart_button', 'custom_product_price_field', 5 );
function custom_product_price_field(){
    echo '<div class="custom-text text">
    <h3>Rental</h3>
    <label>Start Date:</label>
    <input type="date" name="rental_date" value="" class="rental_date" />
    <label>Period Rental:</label>
    <select name="custom_price" class="custom_price">
        <option value="30" selected="selected">2 days</option>
        <option value="35">4 days</option>
    </select>
    </div>';
}

// Get custom field value, calculate new item price, save it as custom cart item data
add_filter('woocommerce_add_cart_item_data', 'add_custom_field_data', 20, 3 );
function add_custom_field_data( $cart_item_data, $product_id, $variation_id ){
    if ( isset($_POST['rental_date']) && ! empty($_POST['rental_date']) ){
        $cart_item_data['custom_data']['date'] = $_POST['rental_date'];
    }
    if ( isset($_POST['custom_price']) && ! empty($_POST['custom_price']) ){
        $_product_id = $variation_id > 0 ? $variation_id : $product_id;
        $product      = wc_get_product($_product_id); // The WC_Product Object
        $base_price   = (float) $product->get_regular_price(); // Product reg price
        $custom_price = (float) sanitize_text_field( $_POST['custom_price'] );

        $cart_item_data['custom_data']['base_price'] = $base_price;
        $cart_item_data['custom_data']['new_price'] = $base_price/100 * $custom_price;
        $cart_item_data['custom_data']['rental'] = $custom_price;
    }
    if ( isset($cart_item_data['custom_data']['new_price']) || isset($cart_item_data['custom_data']['date']) ){
        $cart_item_data['custom_data']['unique_key'] = md5( microtime() . rand() ); // Make each item unique
    }
    return $cart_item_data;
}

// Set the new calculated cart item price
add_action( 'woocommerce_before_calculate_totals', 'extra_price_add_custom_price', 20, 1 );
function extra_price_add_custom_price( $cart ) {
    if ( is_admin() && ! defined( 'DOING_AJAX' ) )
        return;

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

    foreach ( $cart->get_cart() as $cart_item ) {
        if( isset($cart_item['custom_data']['new_price']) )
            $cart_item['data']->set_price( (float) $cart_item['custom_data']['new_price'] );
    }
}

// Display cart item custom price details
add_filter('woocommerce_cart_item_price', 'display_cart_items_custom_price_details', 20, 3 );
function display_cart_items_custom_price_details( $product_price, $cart_item, $cart_item_key ){
    if( isset($cart_item['custom_data']['base_price']) ) {
        $product        = $cart_item['data'];
        $base_price     = $cart_item['custom_data']['base_price'];
        $product_price  = wc_price( wc_get_price_to_display( $product, array( 'price' => $base_price ) ) ) . '<br>';
        if( isset($cart_item['custom_data']['rental']) ) {
            $product_price .= $cart_item['custom_data']['rental'] == '30' ? __("2 days") : __("4 days");
        }
    }
    return $product_price;
}

// Display in cart item the selected date
add_filter( 'woocommerce_get_item_data', 'display_custom_item_data', 10, 2 );
function display_custom_item_data( $cart_item_data, $cart_item ) {
    if ( isset( $cart_item['custom_data']['date'] ) ){

        $cart_item_data[] = array(
            'name' => __("Chosen date", "woocommerce" ),
            'value' =>   date('d.m.Y', strtotime($cart_item['custom_data']['date'])),
        );
    }
    if ( isset( $cart_item['custom_data']['rental'] ) ){
        $cart_item_data[] = array(
            'name' => __("Period Rental", "woocommerce" ),
            'value' =>   $cart_item['custom_data']['rental'] == '30' ? __("2 days") : __("4 days"),
        );
    }
    return $cart_item_data;
}

代碼位於活動子主題(或活動主題)的function.php文件中。 經過測試和工作。

在此輸入圖像描述

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM