Woocommerce exclude specific cart category from minimum order requirement
I have a minimum order amount of 4 items OR 8 items. e.g. So 1,2,3,5,6,7 items are invalid quantity.
I am trying to EXCLUDE products which are from category: christmas from this rule.
e.g. So customer is able to purchase 1 item from christmas category, but must buy a minimum of 4 OR 8 items from all other categories.
Below Code works on its own to check to see if the items in the cart are from Christmas category:
add_action('woocommerce_before_cart', 'bbloomer_check_category_in_cart');
function bbloomer_check_category_in_cart() {
// Set $cat_in_cart to false
$cat_in_cart = false;
// Loop through all products in the Cart
foreach ( WC()->cart->get_cart() as $cart_item_key => $cart_item ) {
// If Cart has category "christmas", set $cat_in_cart to true
if ( has_term( 'christmas', 'product_cat', $cart_item['product_id'] ) ) {
$cat_in_cart = true;
break;
}
}
Second part of my code does not work based on the above conditional. It does however work on its own.
// If no christmas category in cart, run minimum order code:
if ( !$cat_in_cart ) {
add_action( 'woocommerce_check_cart_items', 'spyr_set_min_num_products' );
function spyr_set_min_num_products() {
// Only run in the Cart or Checkout pages
if( is_cart() || is_checkout() ) {
global $woocommerce;
// Set the minimum number of products before checking out
$minimum_num_products = 8;
$minimum_taster_products = 4;
// Get the Cart's total number of products
$cart_num_products = WC()->cart->cart_contents_count;
// Compare values and add an error is Cart's total number of products
// happens to be less than the minimum required before checking out.
// A Minimum of 4 OR 8 products is required before checking out. (Cont. below)
if( ($cart_num_products < $minimum_num_products) && ($cart_num_products > $minimum_taster_products) ) {
// Display our error message
wc_add_notice( sprintf( '<strong>Our Smallest Plan requires at least %s snacks per order.</strong>'
. '<br />Current number of snacks: %s.',
$minimum_num_products,
$cart_num_products ),
'error' );
} else if ($cart_num_products < $minimum_taster_products) {
// Display our error message
wc_add_notice( sprintf( '<strong>A Minimum of %s snacks is required for a TASTER BOX.</strong>'
. '<br />Current number of snacks: %s.',
$minimum_taster_products,
$cart_num_products ),
'error' );
}
}
}
}
}
php wordpress woocommerce shopping-cart hook-woocommerce
add a comment |
I have a minimum order amount of 4 items OR 8 items. e.g. So 1,2,3,5,6,7 items are invalid quantity.
I am trying to EXCLUDE products which are from category: christmas from this rule.
e.g. So customer is able to purchase 1 item from christmas category, but must buy a minimum of 4 OR 8 items from all other categories.
Below Code works on its own to check to see if the items in the cart are from Christmas category:
add_action('woocommerce_before_cart', 'bbloomer_check_category_in_cart');
function bbloomer_check_category_in_cart() {
// Set $cat_in_cart to false
$cat_in_cart = false;
// Loop through all products in the Cart
foreach ( WC()->cart->get_cart() as $cart_item_key => $cart_item ) {
// If Cart has category "christmas", set $cat_in_cart to true
if ( has_term( 'christmas', 'product_cat', $cart_item['product_id'] ) ) {
$cat_in_cart = true;
break;
}
}
Second part of my code does not work based on the above conditional. It does however work on its own.
// If no christmas category in cart, run minimum order code:
if ( !$cat_in_cart ) {
add_action( 'woocommerce_check_cart_items', 'spyr_set_min_num_products' );
function spyr_set_min_num_products() {
// Only run in the Cart or Checkout pages
if( is_cart() || is_checkout() ) {
global $woocommerce;
// Set the minimum number of products before checking out
$minimum_num_products = 8;
$minimum_taster_products = 4;
// Get the Cart's total number of products
$cart_num_products = WC()->cart->cart_contents_count;
// Compare values and add an error is Cart's total number of products
// happens to be less than the minimum required before checking out.
// A Minimum of 4 OR 8 products is required before checking out. (Cont. below)
if( ($cart_num_products < $minimum_num_products) && ($cart_num_products > $minimum_taster_products) ) {
// Display our error message
wc_add_notice( sprintf( '<strong>Our Smallest Plan requires at least %s snacks per order.</strong>'
. '<br />Current number of snacks: %s.',
$minimum_num_products,
$cart_num_products ),
'error' );
} else if ($cart_num_products < $minimum_taster_products) {
// Display our error message
wc_add_notice( sprintf( '<strong>A Minimum of %s snacks is required for a TASTER BOX.</strong>'
. '<br />Current number of snacks: %s.',
$minimum_taster_products,
$cart_num_products ),
'error' );
}
}
}
}
}
php wordpress woocommerce shopping-cart hook-woocommerce
add a comment |
I have a minimum order amount of 4 items OR 8 items. e.g. So 1,2,3,5,6,7 items are invalid quantity.
I am trying to EXCLUDE products which are from category: christmas from this rule.
e.g. So customer is able to purchase 1 item from christmas category, but must buy a minimum of 4 OR 8 items from all other categories.
Below Code works on its own to check to see if the items in the cart are from Christmas category:
add_action('woocommerce_before_cart', 'bbloomer_check_category_in_cart');
function bbloomer_check_category_in_cart() {
// Set $cat_in_cart to false
$cat_in_cart = false;
// Loop through all products in the Cart
foreach ( WC()->cart->get_cart() as $cart_item_key => $cart_item ) {
// If Cart has category "christmas", set $cat_in_cart to true
if ( has_term( 'christmas', 'product_cat', $cart_item['product_id'] ) ) {
$cat_in_cart = true;
break;
}
}
Second part of my code does not work based on the above conditional. It does however work on its own.
// If no christmas category in cart, run minimum order code:
if ( !$cat_in_cart ) {
add_action( 'woocommerce_check_cart_items', 'spyr_set_min_num_products' );
function spyr_set_min_num_products() {
// Only run in the Cart or Checkout pages
if( is_cart() || is_checkout() ) {
global $woocommerce;
// Set the minimum number of products before checking out
$minimum_num_products = 8;
$minimum_taster_products = 4;
// Get the Cart's total number of products
$cart_num_products = WC()->cart->cart_contents_count;
// Compare values and add an error is Cart's total number of products
// happens to be less than the minimum required before checking out.
// A Minimum of 4 OR 8 products is required before checking out. (Cont. below)
if( ($cart_num_products < $minimum_num_products) && ($cart_num_products > $minimum_taster_products) ) {
// Display our error message
wc_add_notice( sprintf( '<strong>Our Smallest Plan requires at least %s snacks per order.</strong>'
. '<br />Current number of snacks: %s.',
$minimum_num_products,
$cart_num_products ),
'error' );
} else if ($cart_num_products < $minimum_taster_products) {
// Display our error message
wc_add_notice( sprintf( '<strong>A Minimum of %s snacks is required for a TASTER BOX.</strong>'
. '<br />Current number of snacks: %s.',
$minimum_taster_products,
$cart_num_products ),
'error' );
}
}
}
}
}
php wordpress woocommerce shopping-cart hook-woocommerce
I have a minimum order amount of 4 items OR 8 items. e.g. So 1,2,3,5,6,7 items are invalid quantity.
I am trying to EXCLUDE products which are from category: christmas from this rule.
e.g. So customer is able to purchase 1 item from christmas category, but must buy a minimum of 4 OR 8 items from all other categories.
Below Code works on its own to check to see if the items in the cart are from Christmas category:
add_action('woocommerce_before_cart', 'bbloomer_check_category_in_cart');
function bbloomer_check_category_in_cart() {
// Set $cat_in_cart to false
$cat_in_cart = false;
// Loop through all products in the Cart
foreach ( WC()->cart->get_cart() as $cart_item_key => $cart_item ) {
// If Cart has category "christmas", set $cat_in_cart to true
if ( has_term( 'christmas', 'product_cat', $cart_item['product_id'] ) ) {
$cat_in_cart = true;
break;
}
}
Second part of my code does not work based on the above conditional. It does however work on its own.
// If no christmas category in cart, run minimum order code:
if ( !$cat_in_cart ) {
add_action( 'woocommerce_check_cart_items', 'spyr_set_min_num_products' );
function spyr_set_min_num_products() {
// Only run in the Cart or Checkout pages
if( is_cart() || is_checkout() ) {
global $woocommerce;
// Set the minimum number of products before checking out
$minimum_num_products = 8;
$minimum_taster_products = 4;
// Get the Cart's total number of products
$cart_num_products = WC()->cart->cart_contents_count;
// Compare values and add an error is Cart's total number of products
// happens to be less than the minimum required before checking out.
// A Minimum of 4 OR 8 products is required before checking out. (Cont. below)
if( ($cart_num_products < $minimum_num_products) && ($cart_num_products > $minimum_taster_products) ) {
// Display our error message
wc_add_notice( sprintf( '<strong>Our Smallest Plan requires at least %s snacks per order.</strong>'
. '<br />Current number of snacks: %s.',
$minimum_num_products,
$cart_num_products ),
'error' );
} else if ($cart_num_products < $minimum_taster_products) {
// Display our error message
wc_add_notice( sprintf( '<strong>A Minimum of %s snacks is required for a TASTER BOX.</strong>'
. '<br />Current number of snacks: %s.',
$minimum_taster_products,
$cart_num_products ),
'error' );
}
}
}
}
}
php wordpress woocommerce shopping-cart hook-woocommerce
php wordpress woocommerce shopping-cart hook-woocommerce
edited Nov 20 '18 at 12:39
Giuls
asked Nov 20 '18 at 0:43
GiulsGiuls
265111
265111
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Solved myself. Instead of two separate functions, needed to move into a single function and check for categories using woocommerce_check_cart_items
add_action( 'woocommerce_check_cart_items', 'spyr_set_min_num_products' );
function spyr_set_min_num_products() {
// Set $cat_in_cart to false
$cat_in_cart = false;
// Loop through all products in the Cart
foreach ( WC()->cart->get_cart() as $cart_item_key => $cart_item ) {
// If Cart has category "download", set $cat_in_cart to true
if ( has_term( 'christmas', 'product_cat', $cart_item['product_id'] ) ) {
$cat_in_cart = true;
break;
}
}
// Only run in the Cart or Checkout pages
if( is_cart() || is_checkout() ) {
global $woocommerce;
// Set the minimum number of products before checking out
$minimum_num_products = 8;
$minimum_taster_products = 4;
// Get the Cart's total number of products
$cart_num_products = WC()->cart->cart_contents_count;
// Compare values and add an error is Cart's total number of products
// happens to be less than the minimum required before checking out.
// A Minimum of 4 OR 8 products is required before checking out. (Cont. below)
if( ( !$cat_in_cart ) && ($cart_num_products < $minimum_num_products) && ($cart_num_products > $minimum_taster_products) ) {
// Display our error message
wc_add_notice( sprintf( '<strong>Our Smallest Plan requires at least %s snacks per order.</strong>'
. '<br />Current number of snacks: %s.',
$minimum_num_products,
$cart_num_products ),
'error' );
} else if ( ( !$cat_in_cart ) && ($cart_num_products < $minimum_taster_products) ) {
// Display our error message
wc_add_notice( sprintf( '<strong>A Minimum of %s snacks is required for a TASTER BOX.</strong>'
. '<br />Current number of snacks: %s.',
$minimum_taster_products,
$cart_num_products ),
'error' );
}
}
}
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53384650%2fwoocommerce-exclude-specific-cart-category-from-minimum-order-requirement%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Solved myself. Instead of two separate functions, needed to move into a single function and check for categories using woocommerce_check_cart_items
add_action( 'woocommerce_check_cart_items', 'spyr_set_min_num_products' );
function spyr_set_min_num_products() {
// Set $cat_in_cart to false
$cat_in_cart = false;
// Loop through all products in the Cart
foreach ( WC()->cart->get_cart() as $cart_item_key => $cart_item ) {
// If Cart has category "download", set $cat_in_cart to true
if ( has_term( 'christmas', 'product_cat', $cart_item['product_id'] ) ) {
$cat_in_cart = true;
break;
}
}
// Only run in the Cart or Checkout pages
if( is_cart() || is_checkout() ) {
global $woocommerce;
// Set the minimum number of products before checking out
$minimum_num_products = 8;
$minimum_taster_products = 4;
// Get the Cart's total number of products
$cart_num_products = WC()->cart->cart_contents_count;
// Compare values and add an error is Cart's total number of products
// happens to be less than the minimum required before checking out.
// A Minimum of 4 OR 8 products is required before checking out. (Cont. below)
if( ( !$cat_in_cart ) && ($cart_num_products < $minimum_num_products) && ($cart_num_products > $minimum_taster_products) ) {
// Display our error message
wc_add_notice( sprintf( '<strong>Our Smallest Plan requires at least %s snacks per order.</strong>'
. '<br />Current number of snacks: %s.',
$minimum_num_products,
$cart_num_products ),
'error' );
} else if ( ( !$cat_in_cart ) && ($cart_num_products < $minimum_taster_products) ) {
// Display our error message
wc_add_notice( sprintf( '<strong>A Minimum of %s snacks is required for a TASTER BOX.</strong>'
. '<br />Current number of snacks: %s.',
$minimum_taster_products,
$cart_num_products ),
'error' );
}
}
}
add a comment |
Solved myself. Instead of two separate functions, needed to move into a single function and check for categories using woocommerce_check_cart_items
add_action( 'woocommerce_check_cart_items', 'spyr_set_min_num_products' );
function spyr_set_min_num_products() {
// Set $cat_in_cart to false
$cat_in_cart = false;
// Loop through all products in the Cart
foreach ( WC()->cart->get_cart() as $cart_item_key => $cart_item ) {
// If Cart has category "download", set $cat_in_cart to true
if ( has_term( 'christmas', 'product_cat', $cart_item['product_id'] ) ) {
$cat_in_cart = true;
break;
}
}
// Only run in the Cart or Checkout pages
if( is_cart() || is_checkout() ) {
global $woocommerce;
// Set the minimum number of products before checking out
$minimum_num_products = 8;
$minimum_taster_products = 4;
// Get the Cart's total number of products
$cart_num_products = WC()->cart->cart_contents_count;
// Compare values and add an error is Cart's total number of products
// happens to be less than the minimum required before checking out.
// A Minimum of 4 OR 8 products is required before checking out. (Cont. below)
if( ( !$cat_in_cart ) && ($cart_num_products < $minimum_num_products) && ($cart_num_products > $minimum_taster_products) ) {
// Display our error message
wc_add_notice( sprintf( '<strong>Our Smallest Plan requires at least %s snacks per order.</strong>'
. '<br />Current number of snacks: %s.',
$minimum_num_products,
$cart_num_products ),
'error' );
} else if ( ( !$cat_in_cart ) && ($cart_num_products < $minimum_taster_products) ) {
// Display our error message
wc_add_notice( sprintf( '<strong>A Minimum of %s snacks is required for a TASTER BOX.</strong>'
. '<br />Current number of snacks: %s.',
$minimum_taster_products,
$cart_num_products ),
'error' );
}
}
}
add a comment |
Solved myself. Instead of two separate functions, needed to move into a single function and check for categories using woocommerce_check_cart_items
add_action( 'woocommerce_check_cart_items', 'spyr_set_min_num_products' );
function spyr_set_min_num_products() {
// Set $cat_in_cart to false
$cat_in_cart = false;
// Loop through all products in the Cart
foreach ( WC()->cart->get_cart() as $cart_item_key => $cart_item ) {
// If Cart has category "download", set $cat_in_cart to true
if ( has_term( 'christmas', 'product_cat', $cart_item['product_id'] ) ) {
$cat_in_cart = true;
break;
}
}
// Only run in the Cart or Checkout pages
if( is_cart() || is_checkout() ) {
global $woocommerce;
// Set the minimum number of products before checking out
$minimum_num_products = 8;
$minimum_taster_products = 4;
// Get the Cart's total number of products
$cart_num_products = WC()->cart->cart_contents_count;
// Compare values and add an error is Cart's total number of products
// happens to be less than the minimum required before checking out.
// A Minimum of 4 OR 8 products is required before checking out. (Cont. below)
if( ( !$cat_in_cart ) && ($cart_num_products < $minimum_num_products) && ($cart_num_products > $minimum_taster_products) ) {
// Display our error message
wc_add_notice( sprintf( '<strong>Our Smallest Plan requires at least %s snacks per order.</strong>'
. '<br />Current number of snacks: %s.',
$minimum_num_products,
$cart_num_products ),
'error' );
} else if ( ( !$cat_in_cart ) && ($cart_num_products < $minimum_taster_products) ) {
// Display our error message
wc_add_notice( sprintf( '<strong>A Minimum of %s snacks is required for a TASTER BOX.</strong>'
. '<br />Current number of snacks: %s.',
$minimum_taster_products,
$cart_num_products ),
'error' );
}
}
}
Solved myself. Instead of two separate functions, needed to move into a single function and check for categories using woocommerce_check_cart_items
add_action( 'woocommerce_check_cart_items', 'spyr_set_min_num_products' );
function spyr_set_min_num_products() {
// Set $cat_in_cart to false
$cat_in_cart = false;
// Loop through all products in the Cart
foreach ( WC()->cart->get_cart() as $cart_item_key => $cart_item ) {
// If Cart has category "download", set $cat_in_cart to true
if ( has_term( 'christmas', 'product_cat', $cart_item['product_id'] ) ) {
$cat_in_cart = true;
break;
}
}
// Only run in the Cart or Checkout pages
if( is_cart() || is_checkout() ) {
global $woocommerce;
// Set the minimum number of products before checking out
$minimum_num_products = 8;
$minimum_taster_products = 4;
// Get the Cart's total number of products
$cart_num_products = WC()->cart->cart_contents_count;
// Compare values and add an error is Cart's total number of products
// happens to be less than the minimum required before checking out.
// A Minimum of 4 OR 8 products is required before checking out. (Cont. below)
if( ( !$cat_in_cart ) && ($cart_num_products < $minimum_num_products) && ($cart_num_products > $minimum_taster_products) ) {
// Display our error message
wc_add_notice( sprintf( '<strong>Our Smallest Plan requires at least %s snacks per order.</strong>'
. '<br />Current number of snacks: %s.',
$minimum_num_products,
$cart_num_products ),
'error' );
} else if ( ( !$cat_in_cart ) && ($cart_num_products < $minimum_taster_products) ) {
// Display our error message
wc_add_notice( sprintf( '<strong>A Minimum of %s snacks is required for a TASTER BOX.</strong>'
. '<br />Current number of snacks: %s.',
$minimum_taster_products,
$cart_num_products ),
'error' );
}
}
}
answered Nov 20 '18 at 13:19
GiulsGiuls
265111
265111
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53384650%2fwoocommerce-exclude-specific-cart-category-from-minimum-order-requirement%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown