wordpress - 仅允许 WooCommerce 中同一供应商的购物车中的产品

标签 wordpress validation woocommerce product vendor

我在 WoocCmmerce 商店的子主题的 functions.php 文件中编写了一个函数。

添加到购物车按钮上的验证会检查购物车中的所有产品是否仅来自 1 个供应商。

  • 如果产品来自一个供应商,则会添加该产品。
  • 如果产品来自不同的供应商,则通知中应显示警告。

此功能无法正常工作,因为该通知仅在我手动刷新页面时显示。它应该立即显示通知。谁能帮我吗?

下面是我的代码:

add_action( 'wp_enqueue_scripts', 'martfury_child_enqueue_scripts', 20 );
function martfury_child_enqueue_scripts() {
    wp_enqueue_style( 'martfury-child-style', get_stylesheet_uri() );
    if ( is_rtl() ) {
        wp_enqueue_style( 'martfury-rtl', get_template_directory_uri() . '/rtl.css', array(), '20180105' );
    }
}

add_action( 'woocommerce_add_to_cart_validation', function( $is_allow, $product_id, $quantity ) {
    $product = get_post( $product_id );
    $product_author = $product->post_author;

    //Iterating through each cart item
    foreach ( WC()->cart->get_cart() as $cart_item_key => $cart_item ) {
        $cart_product_id = $cart_item['product_id'];
        $cart_product = get_post( $cart_product_id );
        $cart_product_author = $cart_product->post_author;
        if( $cart_product_author != $product_author ) {
            $is_allow = false;
            break;
        }
    }

    if( !$is_allow ){
        // We display an error message
    wc_add_notice( __( "Well, you already have some item in your cart. First checkout with those and then purchase other items!", "wcfm-ecogear" ), 'error' );
        
    return wp_redirect($woocommerce->cart->get_cart_url());
    }
    return $is_allow;
    
}, 50, 3 );

最佳答案

看来您应用的某些步骤是不必要的,这应该足够了

  • get_post() - 检索给定帖子 ID 或帖子对象的帖子数据
  • 通过代码中添加的注释标签进行解释
function filter_woocommerce_add_to_cart_validation( $passed, $product_id, $quantity, $variation_id = null, $variations = null ) {       
    // Cart NOT empty
    if ( ! WC()->cart->is_empty() ) {
        // Retrieves post data given a post ID or post object.
        $product = get_post( $product_id );
    
        // Post author
        $product_author = $product->post_author;
    
        // Flag, by default false
        $flag = false;

        // Loop trough cart
        foreach( WC()->cart->get_cart() as $cart_item ) {
            // Get product ID
            $cart_product_id = $cart_item['data']->get_id();

            // Get post
            $cart_product = get_post( $cart_product_id );
            
            // Post author
            $cart_product_author = $cart_product->post_author;
            
            // Condition NOT equal
            if( $cart_product_author != $product_author ) {
                $flag = true;

                // Break loop
                break;
            }
        }
        
        // True
        if ( $flag ) {
            // Add notice    
            wc_add_notice( __( 'Products in the cart have to come from only 1 vendor', 'woocommerce' ), 'error' );

            // NOT passed
            $passed = false;
        }
    }
    
    return $passed;
}
add_filter( 'woocommerce_add_to_cart_validation', 'filter_woocommerce_add_to_cart_validation', 10, 5 );

关于wordpress - 仅允许 WooCommerce 中同一供应商的购物车中的产品,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64165051/

相关文章:

javascript - 正则表达式和检查表单

wordpress - 用于订单更新的 Woocommerce Hook

php - strtotime 时区与 UTC 的偏移量?

php - NGROK 不断将 url 从 CUSTOM_URL 更改为 localhost

python - 如何验证字符串是否正确的日期格式

php - 在自定义插件错误问题中扩展 WC_Product 类(找不到 WC_Product 类)

php - 在 WooCommerce 中选择 "Local Pickup"时,将结帐字段设为可选

wordpress - 自定义帖子状态未出现

javascript - W3 Total Cache 链接到 http 而不是 https

java - 基于标准的字符串验证