HOw do I change the link “Return to shop” on the cart page? I have tried this in hte functions of the child theme and it does not seem to work.
add_filter( ‘woocommerce_return_to_shop_redirect’, “custom_woocommerce_return_to_shop_redirect” ,20 );
function custom_woocommerce_return_to_shop_redirect(){
return $_SERVER[‘HTTP_REFERER’];
}