By default, the WooCommerce Checkout page redirects you back to the (empty) Cart page in case there are no products in the Cart.
Now, there are times when you still need users to see the Checkout page and avoid this redirect. And thankfully, WooCommerce provides us with two filters that we can use to immediately disable this default behavior. Enjoy!
PHP Snippet: Avoid Checkout Redirect to Empty Cart
/**
* @snippet Avoid Empty Cart Redirect @ WooCommerce Checkout
* @how-to businessbloomer.com/woocommerce-customization
* @author Rodolfo Melogli, Business Bloomer
* @compatible WooCommerce 3.6.4
* @community https://businessbloomer.com/club/
*/
add_filter( 'woocommerce_checkout_redirect_empty_cart', '__return_false' );
add_filter( 'woocommerce_checkout_update_order_review_expired', '__return_false' );
Would be great to redirect to a specific URL. Unfortunately my checkout page is a blank white page when nothing is in the cart.
See Step 4 here: https://www.businessbloomer.com/woocommerce-cart-checkout-same-page/
Hi,
Thanks for this trick. Working for me with WP 5.3 + Woocommerce 3.8 + Adorn theme.
Best regards
Awesome!
Works on WP 5.3, Woocommerce 3.8.
On Empty Cart, Checkout goes to empty Check Out / Place Order page. Then when Place Order is clicked, message appears, “Your session has timed out.”
View Cart goes to “Your Cart is Empty” message with “Return to Shop” button.
I’d be interested in learning how to hide View Cart and Checkout in an empty cart, if anyone has suggestions.
Hi John, 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!