更新“更新购物车”上的自定义字段,在WooCommerce购物车中单击

时间:2019-03-16 19:02:37

标签: php ajax wordpress woocommerce cart

我向购物车页面中的每个产品添加了一个自定义<select>字段,以便能够更新变化,但是当我更改其值并单击“更新购物车”时,除非数量字段也已更改,否则没有任何更新。 / p>

有办法避免这种情况吗?


我的代码:

functions.php文件:

add_filter( 'woocommerce_update_cart_action_cart_updated', 'on_action_cart_updated', 20, 1 );
function on_action_cart_updated( $cart_updated ){

    if ($cart_updated) {
        $cart_content = WC()->cart->get_cart_contents();
        $update_cart = false;
        $cart_totals  = isset( $_POST['cart'] ) ? wp_unslash( $_POST['cart'] ) : '';

        if ( ! empty( $cart_content ) && is_array( $cart_totals ) ) {

            foreach ($cart_content as $key => $item) {

                $lease_period = $cart_totals[$key]['lease'];

                if ( ! empty( $lease_period )) {
                    $cart_content[$key]['variation']['attribute_pa_lease-period'] = $lease_period;
                    $update_cart = true;
                }
            }

            if ($update_cart) {
                WC()->cart->set_cart_contents($cart_content);
            }
        }
    }
}

cart.php文件:

<td class="product-lease-period" data-title="<?php esc_attr_e( 'Lease Period', 'woocommerce' ); ?>">
                            <div class="product-lease-period-select">
                                <select name="cart[<?php echo $cart_item_key ?>][lease]">

                                    <?php
                                        $lease_periods = ['6-months'=> '6 Months',
                                                            '12-months' => '12 Months',
                                                            '18-months' => '18 Months',
                                                            '24-months' => '24 Months'];

                                        foreach ($lease_periods as $key => $period) {

                                            $selected = '';

                                            if ($cart_item['variation']['attribute_pa_lease-period'] == $key) {
                                                $selected = 'selected="selected"';
                                            }

                                            echo "<option value=" . $key . " $selected>" . $period . "</option>";
                                        }
                                    ?>
                                </select>
                            </div>
                        </td>

到目前为止,我的结论是

我相信这是由于class-wc-form-handler.php中的这些代码片段引起的:

// Skip product if no updated quantity was posted.
if ( ! isset( $cart_totals[ $cart_item_key ] ) || ! isset( $cart_totals[ $cart_item_key ]['qty'] ) ) {
    continue;
}

及以下内容:

if ( '' === $quantity || $quantity === $values['quantity'] ) {
    continue;
}

1 个答案:

答案 0 :(得分:1)

我在functions.php文件中扩展了WC_Form_Handler类,复制了所需的方法并对其进行了编辑,并在扩展类中为其赋予了比原始类更高的挂接优先级:

class WC_Form_Handler_Ext extends WC_Form_Handler {

    /**
     * Hook in method.
     */
    public static function init() {
        add_action( 'wp_loaded', array( __CLASS__, 'update_cart_action' ), 30 );
    }

    /**
     * Remove from cart/update.
     */
    public static function update_cart_action() {
        // method content edited
    }
}

WC_Form_Handler_Ext::init();

更新:

要在更新购物车中的变化值后进行价格更改,需要将此函数添加到functions.php中。

function find_matching_product_variation_id($product_id, $attributes)
{
    return (new WC_Product_Data_Store_CPT())->find_matching_product_variation(
        new WC_Product($product_id),
        $attributes
    );
}

应该在我在问题中以这种方式提到的functions.php中的循环中调用它:

$attributes = $cart_content[$key]['variation'];
$variation_id = find_matching_product_variation_id($product_id, $attributes);
$price = get_post_meta($variation_id, '_price', true);
$item['data']->set_price($price);