Here’s a very simple snippet that achieves a very complex task – what if you wanted to force your Cart to charge a deposit or a fixed fee, no matter the cart total?
Well, thankfully WooCommerce is pretty flexible and a lot of workarounds can be found.
In this case, we will study two possible solutions: (1) a negative “cart fee” to make the total become e.g. $100 and (2) a filter to completely override the calculated cart total e.g. $100.
Sounds like Japanese? Great – here’s why you’re on Business Bloomer. Copy the snippet, apply it to your test WooCommerce site and see the magic happen – without knowing anything about coding!
PHP Snippet 1: Force Cart to Specific Amount (Deposit) Via a Negative Fee – WooCommerce
/**
* @snippet WooCommerce Deposit (Negative Fee)
* @how-to businessbloomer.com/woocommerce-customization
* @author Rodolfo Melogli, Business Bloomer
* @compatible WooCommerce 8
* @community https://businessbloomer.com/club/
*/
// Note: this will force Cart to $100
add_action( 'woocommerce_cart_calculate_fees', 'bbloomer_woocommerce_deposit' );
function bbloomer_woocommerce_deposit() {
$total_minus_100 = WC()->cart->get_cart_contents_total() - 100;
WC()->cart->add_fee( 'Balance', $total_minus_100 * -1 );
}
PHP Snippet 2: Force Cart to Specific Amount (Deposit) Via a Filter – WooCommerce
/**
* @snippet WooCommerce Deposit (Filter)
* @how-to businessbloomer.com/woocommerce-customization
* @author Rodolfo Melogli, Business Bloomer
* @compatible WooCommerce 8
* @community https://businessbloomer.com/club/
*/
// Note: this will force Cart to $100
add_filter( 'woocommerce_calculated_total', 'bbloomer_woocommerce_deposit_filter', 9999, 2 );
function bbloomer_woocommerce_deposit_filter( $total, $cart ) {
return 100;
}
Hello Rodolfo,
Thank you for your code! I wonder how to add functionality so that the user would not be able to checkout if the balance is negative.
Best,
Jin
Sure! You can edit this to use the cart total instead: https://www.businessbloomer.com/woocommerce-deny-checkout-based-cart-weight/
I made a slight change to the code to suit my purposes. Its not perfect but it works for me for the moment.
Cool
Hey Rodolfo,
I have just used the code today 20/10/2021 to Force Cart to specific amount. It works ok. I need to figure out the minus display issue thought lol.
WordPress 5.81
PHP 7.3.3
Apache
can we add the custom deposit price
in single product
Hi Sarfaraz, thanks so much for your comment! Yes, this is definitely possible, but I’m afraid it’s custom work. If you’d like to get a quote, feel free to contact me here. Thanks a lot for your understanding!
Hi,
The fee shows a minus figure (naturally). How would you have it show a positive figure to the end user and calculates as a negative. So for example, if you were using £5 deposit but wanted the fee to show the total outstanding minus the £5, how would you do this so it shows up on all places including emails.
This is what i’m after:
Total ………………………… £ 30
Pay on collection ………. £25
Deposit …………………….. £ 5
This is what the code gives me:
Total ………………………… £ 30
Pay on collection ………. -£25
Deposit …………………….. £ 5
Hiya Daniel, thanks so much for your comment! Yes, this is possible – but unfortunately this is custom work and I cannot provide a complementary solution here via the blog comments. If you’d like to get a quote, feel free to contact me here. Thanks a lot for your understanding! ~R
Hi Rodolf, I am looking for something similar to this, I will check this code, thank you for sharing.
Nice 🙂
I have a lodge which charges a deposit online (with PayPal) and customers can pay the rest when they arrive in cash to save on fees etc.
I want to charge a 20% deposit amount of the cart total at checkout, without any extra outstanding costs they have to pay. I’ve looked at the deposit plugin solutions but they have more options than I need.
Is it possible to modify this code to calculate 20% of cart total and only charge this at checkout?
I can then send an e-mail with the amount outstanding separately.
Thanks for your advice!
Ben
Ben, thanks so much for your comment! Yes, this is possible – but unfortunately this is custom work and I cannot provide a complementary solution here via the blog comments. Thanks a lot for your understanding! ~R