您可以创建自定义页面并在下面的函数中添加该自定义页面url。因此,所有WP“继续结帐”将转到自定义页面。
在该页面中,您可以链接到Final Cart Page 并在那里添加签出链接。
add_filter(\'woocommerce_get_checkout_url\', \'wpse_redirect_checkout\');
function wpse_redirect_checkout($url) {
global $woocommerce;
$checkout_url = \'http://www.example.com/custom-checkout-page\';
return $checkout_url;
}