如果特定商品在Woocommerce的购物车中,则更改购物车商品价格

时间:2017-11-26 17:16:26

标签: php wordpress woocommerce cart membership

我正在使用WooCommerce会员资格,并希望在购买特定产品时将免费会员资格扩展到首次会员。我可以将其中的一部分单独使用,但我很难将它们集中在一起。

他们必须购买的商品还有促销价,所以我也会检查日期以查看商品是否在销售窗口中。那部分正在发挥作用。

似乎当我添加参数以检查项目是否在购物车中时,整个事情就会中断。如果我分别运行这两个函数,它们都可以工作。

function mps_registration_price($cart_object) {
    global $post, $product;

    // Bail if memberships is not active
    if ( ! function_exists( 'wc_memberships' ) ) {
        return;
    }

    $user_id = get_current_user_id();
    date_default_timezone_set("America/Chicago");
    $today = time();

    // Check if user was never a member 
    if ( !wc_memberships_get_user_memberships( $user_id )) {
        if( mps_check_for_product() ) {

        foreach ( $cart_object->get_cart() as $cart_item ) {

            // get the product id (or the variation id)
            $id = $cart_item['data']->get_id();

            if($id == 17) {
                    $salePrice = get_post_meta($id, '_sale_price', true);
                    $saleFrom = get_post_meta($id, '_sale_price_dates_from', true);
                    $saleTo = get_post_meta($id, '_sale_price_dates_to', true); 

                    if( !empty($salePrice) && $today >= $saleFrom && $today <= $saleTo ) {
                        $new_price = $salePrice;
                    } else {
                        $new_price = get_post_meta($id, '_regular_price', true);
                    }
                    // Updated cart item price
                    $cart_item['data']->set_price( $new_price ); 
                }
            }
        } else {

            foreach ( $cart_object->get_cart() as $cart_item ) {

                // get the product id (or the variation id)
                $id = $cart_item['data']->get_id();

                if($id == 17) {
                    $salePrice = get_post_meta($id, '_sale_price', true);
                    $saleFrom = get_post_meta($id, '_sale_price_dates_from', true);
                    $saleTo = get_post_meta($id, '_sale_price_dates_to', true); 

                    if( !empty($salePrice) && $today >= $saleFrom && $today <= $saleTo ) {
                        $new_price = $salePrice + 50;
                    } else {
                        $new_price = get_post_meta($id, '_regular_price', true);
                    }
                    // Updated cart item price
                    $cart_item['data']->set_price( $new_price ); 
                }
            }
        }
    }

}

add_filter( 'woocommerce_before_calculate_totals', 'mps_registration_price', 10, 1 );

function mps_check_for_product() {

    $product_id = 11;
    $product_cart_id = WC()->cart->generate_cart_id( $product_id );
    $in_cart = WC()->cart->find_product_in_cart( $product_cart_id );

    if ( $in_cart ) {
        return true;
    } else {
        return false;
    }
}

add_action('woocommerce_before_cart', 'mps_check_for_product');

1 个答案:

答案 0 :(得分:1)

已更新 (2018年10月)

这里的所有内容都很复杂,因为您只想在客户尚未加入会员时将特定产品(ID 17)添加到销售中并支付额外费用。

您不需要2个独立的功能,而您的第2个功能是以错误的方式进行。如果您在第一个挂钩功能中调用它,则不需要挂钩。

我已使用WC_Product方法而不是get_post_meta()完全重新访问您的代码......

同样,WC_Product方法 is_on_sale()管理所有,例如销售产品价格的自/至日期。所以你不需要在你的功能中得到它。

  

在您的代码中,当产品11在购物车中或者不在购物车中的2个购物车循环中时,没有差异 ...所以您可能需要进行一些更改那里。

所以你的代码现在非常紧凑:

add_action( 'woocommerce_before_calculate_totals', 'mps_registration_price', 20, 1 );
function mps_registration_price( $cart ) {

    if ( is_admin() && ! defined( 'DOING_AJAX' ) )
        return;

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

    // Bail if memberships is not active
    if ( ! function_exists( 'wc_memberships' ) ) return; // Exit

    // Only for non members
    $user_id = get_current_user_id();
    if ( wc_memberships_get_user_memberships( $user_id ) ) return; // Exit

    // First loop to check if product 11 is in cart
    foreach ( $cart->get_cart() as $cart_item ){
        $is_in_cart = $cart_item['product_id'] == 11 ? true : false;
    }

    // Second loop change prices
    foreach ( $cart->get_cart() as $cart_item ) {

        // Get an instance of the WC_Product object (or the variation product object)
        $product = $cart_item['data'];

        // Method is_on_sale() manage everything (dates…)
        // Here we target product ID 17
        if( $product->is_on_sale() && $product->get_id() == 17 ) {

            // When product 11 is not cart
            if( ! $is_in_cart ){
                $product->set_price( $product->get_sale_price() + 50);
            }
        }
    }
}

代码放在活动子主题(或活动主题)的function.php文件中或任何插件文件中。

经过测试和工作。