php - WooCommerce: Custom function adding free product - Cart page getting broken for orders up to 3000

Solution:
SHORTENING REPETITIVE CODE with a PHP FOR loop:
This doesn't answer directly to your question, but your code is very long and redundant. With a simple php for loop you can drastically shorten the first 2 functions...
It seems that your code could come partially from this thread:
Add a product to woocommerce cart if other cart items are in a specific category
Update:
Then I have MERGED all your code in your first hooked function qualifies_for_incentive()
.
So the code below does exactly the same thing as all your code (20 lines without comments):
add_action('woocommerce_check_cart_items', 'qualifies_for_incentive' );
function qualifies_for_incentive() { // Cart's Total Excluding Taxes
if( ( is_cart() || is_checkout () ) {
$free_product = 6971; // Incentive product we are giving away
$cart_id = WC()->cart->generate_cart_id( $free_product ); // (equivalent to $prod_unique_id)
$free_products_in_cart = WC()->cart->find_product_in_cart( $cart_id );
$cart_amount = WC()->cart->subtotal;
if( $cart_amount < 250 ) {
// removing free product by unsetting it
unset( WC()->cart->cart_contents[$cart_id] );
}
// The shortening "FOR LOOP":
// $amount goes by step of 250 until 10000 while
// $number is increased by 1 each step until 40.
for( $amount = 250, $number=1; $amount <= 10000, $number<=40; $amount += 250, $number++ ){
if( ( $cart_amount >= $amount ) {
// Removing existing "free products" from the cart.
WC()->cart->remove_cart_item( $free_products_in_cart );
// Adding to cart a $number of free products
WC()->cart->add_to_cart( $free_product, $number );
}
}
}
}
This way it avoid to get some kind of lost when reviewing it.
.
It's the generated code by echoing what's inside the loop with that php file:
<html><head><title>The FOR loop in action (PHP)</title></head>
<body>
<p><br> - - - - - - - - - - - - - - - - - The FOR loop - - - - - - - - - - - - - - - - - <br></p>
<div>
<code><?php
for( $amount = 250, $number=1; $amount <= 10000, $number<=40; $amount += 250, $number++ ){
echo '
if( $cart_amount >= $amount ) {
WC()->cart->remove_cart_item( $free_products_in_cart ); <br>
WC()->cart->add_to_cart( $free_product, '.$number.' ); <br>
} <br>';
}
?></code>
</div>
<p><br> - - - - - - - - - - - - - - - - - - - E N D - - - - - - - - - - - - - - - - - - - <br></p>
</body>
</html>
Share solution ↓
Additional Information:
Link To Answer People are also looking for solutions of the problem: please make sure the php redis extension is installed and enabled.
Didn't find the answer?
Our community is visited by hundreds of web development professionals every day. Ask your question and get a quick answer for free.
Similar questions
Find the answer in similar questions on our website.
Write quick answer
Do you know the answer to this question? Write a quick response to it. With your help, we will make our community stronger.
About the technologies asked in this question
PHP
PHP (from the English Hypertext Preprocessor - hypertext preprocessor) is a scripting programming language for developing web applications. Supported by most hosting providers, it is one of the most popular tools for creating dynamic websites.
The PHP scripting language has gained wide popularity due to its processing speed, simplicity, cross-platform, functionality and distribution of source codes under its own license.
https://www.php.net/
HTML
HTML (English "hyper text markup language" - hypertext markup language) is a special markup language that is used to create sites on the Internet.
Browsers understand html perfectly and can interpret it in an understandable way. In general, any page on the site is html-code, which the browser translates into a user-friendly form. By the way, the code of any page is available to everyone.
https://www.w3.org/html/
Welcome to programmierfrage.com
programmierfrage.com is a question and answer site for professional web developers, programming enthusiasts and website builders. Site created and operated by the community. Together with you, we create a free library of detailed answers to any question on programming, web development, website creation and website administration.
Get answers to specific questions
Ask about the real problem you are facing. Describe in detail what you are doing and what you want to achieve.
Help Others Solve Their Issues
Our goal is to create a strong community in which everyone will support each other. If you find a question and know the answer to it, help others with your knowledge.