I have written a function in my functions.php
file of my child theme in my WoocCmmerce store.
The validation on the add to cart
button checks if all products in the cart come from only 1 vendor.
- If the products come from one vendor it will add the product.
- If the products come from separate vendors a notice should display a warning.
This function does not work correctly as the notice only displays when i manually refresh the page. It should display the notice immediately. Can anyone help me?
Here's my code below:
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 );
It seems that some of the steps you apply are unnecessary, this should suffice