25% off ProSNIPC25OFF

Add Continue Shopping Button to Cart Page

Adds a Continue Shopping button to the WooCommerce cart page that links back to the shop, giving customers an easy way to return to browsing without using the browser back button.

PHPby SnipCraft
php
<?php
if ( ! class_exists( 'WooCommerce' ) ) {
    return;
}

add_action( 'woocommerce_cart_actions', 'scseed_continue_shopping_button' );
function scseed_continue_shopping_button() {
    $shop_url = apply_filters( 'scseed_continue_shopping_url', wc_get_page_permalink( 'shop' ) );
    printf(
        '<a href="%s" class="button scseed-continue-shopping">%s</a>',
        esc_url( $shop_url ),
        esc_html__( 'Continue Shopping', 'woocommerce' )
    );
}
#cart#navigation#shop#ux#woocommerce