Add Continue Shopping Button on WooCommerce Cart Page
Hi All, WooCommerce is not included continue shopping button on cart page, use the following code for adding continue shopping button on WooCommerce Cart Page. Add this function to your theme functions.php file.
/** * Creative Tweets Add Continue Shopping Button on Cart Page * Visit: creativetweets.com */ add_action( 'woocommerce_before_cart_table', 'woo_add_continue_shopping_button_to_cart' ); function woo_add_continue_shopping_button_to_cart() { $shop_page_url = get_permalink( woocommerce_get_page_id( 'shop' ) ); echo '<div class="woocommerce-message">'; echo ' <a href="'.$shop_page_url.'" class="button">Continue Shopping →</a> Would you like some more goods?'; echo '</div>'; }