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 Integrate Third-Party Delivery Services (DoorDash, Uber Eats, Grubhub) with Your WooCommerce Restaurant: Sync Orders, Manage Drivers, and Expand Your Delivery Reach Without Losing Control (Complete Guide)

Why Integrate Third-Party Delivery Platforms with Your WooCommerce Restaurant Website Restaurants listing exclusively on DoorDash, Uber Eats, or Grubhub hand over 15–30% of every order in commission fees, lose direct access to customer data, and compete for visibility alongside dozens of nearby competitors. That’s the trade-off for convenience. But there’s a smarter path: keeping your […]
April 11, 2026
Tutorials

How to Track Restaurant Orders, Revenue, and Customer Behavior in WooCommerce: Google Analytics 4, WooCommerce Reports, and Custom Dashboards for Data-Driven Menu and Marketing Decisions (Complete Guide)

Why Analytics Matter for Your WooCommerce Restaurant: The Data You’re Missing Most restaurant owners can tell you their best-selling dish from memory. But ask them which menu item generates the highest profit margin per order, what time slot produces the largest average ticket, or how many first-time customers come back within 30 days — and […]
April 10, 2026
Tutorials

How to Set Up SMS Order Notifications and Text Message Marketing for Your WooCommerce Restaurant: Real-Time Alerts for Kitchen Staff, Delivery Drivers, and Customers Using Twilio and WP SMS (Complete Guide)

Why SMS Notifications Are Essential for Restaurant Order Management Picture this: it’s Friday night, the kitchen is slammed, and three online orders just came through your WooCommerce store. The email notifications are sitting unread in an inbox nobody has time to check. Meanwhile, a customer is calling to ask why their order hasn’t been acknowledged, […]
April 10, 2026