Woocommerce中的自定义购物车商品重量

时间:2018-11-20 20:41:30

标签: php wordpress woocommerce properties cart

我正在创建尺寸和重量差异很大的产品。由于我的产品高度定制,因此我没有使用WooCommerce产品变体来帮助我。我正在使用第三方插件从许多选项中进行选择,我计划检查这些选项以确定产品的重量。

问题是我想在将产品添加到购物车之前设置产品重量。然后,购物车上的运费计算器将根据购物车的总重量(WooCommerce重量运费)计算运费。

我已经尝试了2个WooCommerce钩子来做这个,但是没有运气。

add_filter( 'woocommerce_add_cart_item_data', 'update_weight_on_add_to_cart', 10, 3);

add_action( 'woocommerce_add_to_cart', 'update_weight_on_add_to_cart', 10, 6 );

我能够使用add_filter设置自定义字段。这样做可以看到我成功地将产品重量设置为新的值。但是,一旦我进入购物车页面,重量就会恢复为在编辑产品页面上设置的重量。

这是我目前用来检查的功能:

function update_weight_on_add_to_cart( $cart_item_data, $product_id, $variation_id )
{
    $product = wc_get_product( $product_id );

    $weight1 = $product->get_weight();

    $product->set_weight(3.45);
    $weight2 = $product->get_weight();

    $cart_item_data['weight1'] = $weight1;
    $cart_item_data['weight2'] = $weight2;

    return $cart_item_data;
}

然后,我在购物车上显示这些字段,以查看是否使用以下挂钩和函数成功更改了数据。 (我从博客文章或其他StackOverflow文章中获取了大部分信息)

add_filter( 'woocommerce_get_item_data', 'display_weight', 10, 2 );
function display_weight( $item_data, $cart_item ) {
    $item_id = $cart_item['variation_id'];
    if($item_id == 0) $item_id = $cart_item['product_id'];
    $product_qty = $cart_item['quantity'];
    $product = wc_get_product($item_id);
    $weight3 = $product->get_weight();

    $item_data[] = array(
        'key'       => __('Weight3', 'woocommerce'),
        'value'     => wc_clean( $weight3 ),
        'display'   => ''
    );
     $item_data[] = array(
        'key'     => __( 'Weight1', 'woocommerce' ),
        'value'   => wc_clean( $cart_item['weight1'] ),
        'display' => ''
    );
     $item_data[] = array(
        'key'     => __( 'Weight2', 'woocommerce' ),
        'value'   => wc_clean( $cart_item['weight2'] ),
        'display' => ''
    );

    return $item_data;
}

我最近使用上述代码的努力导致购物车页面上显示以下内容。

重量3: 1

重量1: 1

重量2: 3.45

任何帮助将不胜感激!如果无法通过这种方式完成此操作,是否有更好的方法来解决此问题?也许这需要在购物车上完成?

1 个答案:

答案 0 :(得分:1)

存在一些错误,错误和遗漏的部分……这是解决问题的方法(适用于包括产品变体在内的所有产品类型)

// make and save a calculated weight as custom cart item data
add_filter( 'woocommerce_add_cart_item_data', 'add_weight_custom_cart_item_data', 10, 3 );
function add_weight_custom_cart_item_data( $cart_item_data, $product_id, $variation_id ){
    // For product variations handling
    $product_id = $variation_id > 0 ? $variation_id : $product_id;

    // Get an instance of the product object
    $product = wc_get_product( $product_id );

    // The default product weight
    $cart_item_data['weight']['default'] = $product->get_weight();

    ## ====> HERE YOU CAN MAKE YOUR WEIGHT CALCULATIONS <==== ##
    $new_weight_value = 3.45;

    // Set the new calculated weight
    $cart_item_data['weight']['new'] = 3.45;

    return $cart_item_data;
}

add_filter( 'woocommerce_get_item_data', 'display_cart_item_weight', 10, 2 );
function display_cart_item_weight( $item_data, $cart_item ) {
    if ( isset($cart_item['weight']) ) {
        // Display original weight
        if ( isset($cart_item['weight']['default']) ) {
            $item_data[] = array(
                'key'       => __('Weight (original)', 'woocommerce'),
                'value'     => wc_format_weight( $cart_item['weight']['default'] ),
            );
        }

        // Display calculated weight
        if ( isset($cart_item['weight']['new']) ) {
            $item_data[] = array(
                'key'     => __( 'Weight (new)', 'woocommerce' ),
                'value'   => wc_format_weight( $cart_item['weight']['new'] ),
            );
        }
    }
    return $item_data;
}

// Set the new weight in cart items
add_action( 'woocommerce_before_calculate_totals', 'set_custom_cart_item_weight', 25, 1 );
function set_custom_cart_item_weight( $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['weight']['new']) ) {
            $cart_item['data']->set_weight($cart_item['weight']['new']);
        }
    }
}

代码进入您的活动子主题(活动主题)的function.php文件中。经过测试,可以正常工作。

enter image description here