The popular open-source contract for web professionals by Stuff & Nonsense
- Originally published: 23rd December 2008
- Revised date: March 15th 2016
- Original post
| <?php | |
| /** | |
| * Add Continue Shopping Button on Cart Page | |
| * Add to theme functions.php file or Code Snippets plugin | |
| */ | |
| add_action( 'woocommerce_before_cart_table', 'woo_add_continue_shopping_button_to_cart' ); | |
| function woo_add_continue_shopping_button_to_cart() { |
| // Remove WooCommerce Theme Support admin message | |
| add_theme_support( 'woocommerce' ); |