Hi,
Those links are automatically connect to the shop page that is defined in Woocommerce.
But Guess it can be changed with the code below.
/**
* Changes the redirect URL for the Return To Shop button in the cart.
*
* @return string
*/
function wc_empty_cart_redirect_url() {
return 'http://yourdomain.com/your-page/';
}
add_filter( 'woocommerce_return_to_shop_redirect', 'wc_empty_cart_redirect_url' );
Add it to the functions.php of the child theme.
-Rui