添加产品后,WooCommerce将向上销售的产品添加到购物车中

时间:2013-08-20 07:28:17

标签: wordpress woocommerce

我正在尝试在我的WooCommerce主题中实现自定义追加销售功能。 当用户添加产品时,我需要在其购物车中添加额外的产品(追加销售)。这意味着我必须在产品中添加一个额外的参数,这样我就可以获得产品/加售关系,并在产品从购物车中删除时删除相关的加售。

用户可以通过复选框列表选择这些追加销售产品。以下是我的“content-single-product.php”WooCommerce模板的概述:

<form action="<?php echo esc_url( $product->add_to_cart_url() ); ?>" class="cart" method="post" enctype="multipart/form-data">
    <?php

    // Get Upsells Product ID:
    $upsells = $product->get_upsells();

    if ( sizeof( $upsells ) == 0 ) return;

    $meta_query = $woocommerce->query->get_meta_query();

    // Get Upsells:
    $args = array(
        'post_type'           => 'product',
        'ignore_sticky_posts' => 1,
        'no_found_rows'       => 1,
        'posts_per_page'      => $posts_per_page,
        'orderby'             => $orderby,
        'post__in'            => $upsells,
        'post__not_in'        => array( $product->id )
    );

    $query = new WP_Query( $args );

    if ( $query->have_posts() ): ?>
        <ul>
        <?php while ( $query->have_posts() ): $query->the_post(); ?>
            <label for="upsell_<?php the_ID(); ?>"><input type="checkbox" name="upsells[]" id="upsell_<?php the_ID(); ?>" value="<?php the_ID(); ?>" /> <?php the_title(); ?></label>
        <?php endwhile; ?>
        </ul>
    <?php endif; ?>

    <?php wp_reset_postdata(); ?>

    <button type="submit">Add to cart</button>
</form>

上面的代码已经简化..

然后,这是我添加到functions.php中的代码,它允许我向购物车添加销售额并为相关产品添加额外的行:

/**
 * Add upsells as extra data for added product
 */
function add_upsells_to_cart( $cart_item_key ) {
    global $woocommerce;

    if ( empty( $_REQUEST['upsells'] ) || ! is_array( $_REQUEST['upsells'] ) )
        return;

    // Prevent loop
    $upsells = $_REQUEST['upsells'];
    unset( $_REQUEST['upsells'] );

    // Add upsell_parent row (if not already existing) for the associated product
    if ( ! $cart_item_data['upsells'] || ! is_array( $cart_item_data['upsells'] ) )
        $cart_item_data['upsells'] = array();

    // Append each upsells to product in cart
    foreach( $upsells as $upsell_id ) {
        $upsell_id = absint( $upsell_id );

        // Add extra parameter to the product which contain the upsells
        $woocommerce->cart->cart_contents[ $cart_item_key ]['upsells'] = $upsell_id;

        // Add upsell to cart
        $woocommerce->cart->add_to_cart( $upsell_id );
    }
}
add_action( 'woocommerce_add_to_cart', 'add_upsells_to_cart' );

按照预期将加售量添加到购物车中,但额外的行似乎会被WC中的某些内容删除。

当我在上一个功能结束时执行print_r( $woocommerce->cart->cart_contents[ $cart_item_key ] );时,额外加售参数可见,但是当我从购物车页面显示购物车时,upsells参数将从购物车中删除。

有什么想法吗?

谢谢, 即

1 个答案:

答案 0 :(得分:5)

最后,我找到了解决问题的方法。

当通过get_cart_from_session()函数class-wc-cart.php从会话加载购物车时,问题就出现了。

如果将额外的密钥添加到购物车项目,我们需要通过woocommerce_get_cart_item_from_session过滤器注入密钥。

用户现在可以选择加售,此加售会在添加产品的同时自动添加到购物车。如果主要产品被删除,我还有一个允许我删除加售的功能。

这是我添加到我的functions.php中的最终代码:

/**
 * Add upsells as extra data for added product
 */
function add_upsells_to_cart( $cart_item_key ) {
    global $woocommerce;

    if ( empty( $_REQUEST['upsells'] ) || ! is_array( $_REQUEST['upsells'] ) )
        return;

    // Prevent loop
    $upsells = $_REQUEST['upsells'];
    unset( $_REQUEST['upsells'] );

    // Append each upsells to product in cart
    foreach( $upsells as $upsell_id ) {
        $upsell_id = absint( $upsell_id );

        // Add upsell into cart and set upsell_of as extra key with parent product item id
        $woocommerce->cart->add_to_cart( $upsell_id, 1, '', '', array( 'upsell_of' => $cart_item_key ) );
    }
}
add_action( 'woocommerce_add_to_cart', 'add_upsells_to_cart', 1, 6 );


/**
 * Inject upsell_of extra key cart item key when cart is loaded from session
 */
function get_cart_items_from_session( $item, $values, $key ) {
    if ( array_key_exists( 'upsell_of', $values ) )
        $item[ 'upsell_of' ] = $values['upsell_of'];

    return $item;
}
add_filter( 'woocommerce_get_cart_item_from_session', 'get_cart_items_from_session', 1, 3 );


/**
 * Remove associated upsells if product removed from cart
 */
function remove_upsells_from_cart( $cart_item_key ) {
    global $woocommerce;

    // Get cart
    $cart = $woocommerce->cart->get_cart();

    // For each item in cart, if item is upsell of deleted product, delete it
    foreach( $cart as $upsell_key => $upsell )
        if ( $upsell['upsell_of'] == $cart_item_key )
            unset( $woocommerce->cart->cart_contents[ $upsell_key ] );
}
add_action( 'woocommerce_before_cart_item_quantity_zero', 'remove_upsells_from_cart' );
相关问题