Tagged: x
-
AuthorPosts
-
October 23, 2016 at 1:24 pm #1227423
sebagcParticipantHi!
I hope not to bother with my question.
Ive done some research and found nothing conclusive, so i turn to you guys, that are the experts.
Does Woocommerce have the opportunity to show a Continue Shopping Button in the cart Page? Ive read that i should have it integrated and maybe the theme is overwriting it, and others say i should get an addon.
Can you please point me in the right direction?
Thank you very much in advance!October 23, 2016 at 8:27 pm #1227767
Rue NelModeratorHello There,
Thanks for writing in! By default WooCommerce Cart page does not have a ‘Continue Shopping’ or ‘Return to Store’ button. When you go to the cart page when the cart is empty, there is a ‘Return to Store’ button. And if you need to add this button code to the cart page when the cart has items, (one you already have your child theme active and ready), please insert this following code in your child theme’s functions.php file.
// add Continue Shopping button next to Proceed to CheckOut button // ============================================================================= add_action('woocommerce_proceed_to_checkout', 'themeprefix_back_to_store'); function themeprefix_back_to_store() { ?> <a class="button wc-backward" href="<?php echo get_permalink( wc_get_page_id( 'shop' ) ); ?>"><?php _e( 'Continue Shopping', 'woocommerce' ) ?></a> <?php } // =============================================================================For other options where you can place the button, please check this link:
We would loved to know if this has work for you. Thank you.
-
AuthorPosts
- <script> jQuery(function($){ $("#no-reply-1227423 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>
