apply_filters('wpt_view_cart_link', $view_cart_link, $table_id )

To change the View cart Text

Parameters #

$view_cart_link ( string )
View Cart link / url
$table_id (init)
post ID of woo product table

Return #

Return text. Default returns View Cart.

File Location #

inc/handle/fragment.php

Example#

add_filter('wpt_view_cart_link','wpt_custom_my_link_view_cart_footer_cart');
function wpt_custom_my_link_view_cart_footer_cart(){
	//your custom link here
	return 'https://google.com/';
}