Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- * Add Continue Shopping Button on Cart Page & Checkout page
- * Add to theme functions.php file or Code Snippets plugin
- */
- add_action( 'woocommerce_before_cart_table', 'woo_add_continue_shopping_button_to_cart' );
- add_action( 'woocommerce_before_checkout_form', 'woo_add_continue_shopping_button_to_cart' );
- function woo_add_continue_shopping_button_to_cart() {
- $shop_page_url = get_permalink( wc_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>';
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement