我正在使用 Easy Digital Downloads 销售一些数字产品,如果结帐页面为空,我希望当他们尝试访问空的结帐页面时,他们将被重定向到特定页面。可能吗?如果可能的话,我该怎么做?
问问题
186 次
1 回答
-1
如果购物车中没有产品,WooCommerce 已经将结帐重定向到购物车页面,但您可以更改它并重定向到您的自定义页面:
function wc_custom_template_redirect(){
global $wp_query, $wp;
// When on the checkout with an empty cart, redirect to cart page.
if ( is_page( wc_get_page_id( 'checkout' ) ) && wc_get_page_id( 'checkout' ) !== wc_get_page_id( 'cart' ) && WC()->cart->is_empty() && empty( $wp->query_vars['order-pay'] ) && ! isset( $wp->query_vars['order-received'] ) && ! is_customize_preview() && apply_filters( 'woocommerce_checkout_redirect_empty_cart', true ) ) {
$page_id = 62;
wp_redirect( get_the_permalink( $page_id ) );
exit;
}
}
add_action( 'template_redirect', 'wc_custom_template_redirect', 0 );
确保$page_id
您要重定向到的页面的反射 ID。
于 2019-06-10T14:13:49.010 回答