En functions.php del tema activo, añade el siguiente código:
Código PHP:
Ver original1 //add back to store button after cart
2 add_action('woocommerce_cart_coupon', 'themeprefix_back_to_store');
3 function themeprefix_back_to_store() { ?>
4 <a class="button wc-backward" href="<?php echo get_permalink( wc_get_page_id( 'shop' ) ); ?>"><?php _e( 'Seguir comprando', 'woocommerce' ) ?></a>
5 <?php
6 }