WPSlash

Add Continue Shopping Button on WooCommerce Cart Page

Thursday September 10, 2020

If you think that a continue shopping button missing from Cart Page on WooCommerce you can easily add a “Continue Shopping” button by following the below instructions.

Instructions

A small code snippet to add inside functions.php on your child theme if you want to add a continue shopping button on Cart Page

add_action('woocommerce_before_cart_totals', 'wpslash_continue_shopping_hook');

function wpslash_continue_shopping_hook() { ?>
<a class="button wc-backward" href="<?php echo esc_url( wc_get_page_permalink( 'shop' ) ); ?>"> <?php _e( 'Continue Shopping', 'woofood' ) ?> </a>

<?php
}

Leave a Comment

Your email address will not be published. Required fields are marked *

Related Articles

Tutorials

How to Set Up SMS Order Notifications and Automated Text Message Alerts for Your WooCommerce Restaurant (Complete Guide for Owners, Staff, and Customers)

Running a restaurant means dealing with a constant stream of orders, and every minute counts. When a customer places an order online and doesn’t hear anything back, anxiety kicks in. Did the restaurant get my order? Is it being prepared? When will it arrive? SMS notifications solve this problem instantly — a quick text message […]
March 28, 2026
Tutorials

How to Set Up Real-Time Order Tracking and Live Order Status Notifications for Your WooCommerce Restaurant Website (Complete Guide for Pickup and Delivery)

There’s a moment every restaurant customer knows too well — you’ve placed an order online, and now you’re staring at your phone wondering: did they get it? Are they making it? When will it arrive? That uncertainty is more than just annoying. It’s the kind of friction that drives customers to call your restaurant, leave […]
March 27, 2026
Tutorials

How to Set Up a Self-Service Ordering Kiosk for Your Restaurant Using WordPress, WooCommerce, and a Touchscreen Display (Complete Step-by-Step Guide)

Self-service ordering kiosks used to be something only big chains like McDonald’s or Panera could afford. We’re talking $5,000–$15,000 per unit, proprietary software, and expensive maintenance contracts. But here’s the thing — you can build a fully functional self-service kiosk using WordPress, WooCommerce, and a consumer-grade touchscreen display for a fraction of that cost. This […]
March 27, 2026