Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1227423
    sebagc
    Participant

    Hi!
    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!

    #1227767
    Rue Nel
    Moderator

    Hello 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:

    Continue Shopping for WooCommerce

    We would loved to know if this has work for you. Thank you.

  • <script> jQuery(function($){ $("#no-reply-1227423 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>