我正在使用Easy Digital Downloads出售一些数字产品,我希望结帐页面为空,当他们尝试访问空的结帐页面时,它们将被重定向到特定页面。可能吗? 如果可能的话,我该怎么做?
答案 0 :(得分:0)
如果购物车中没有商品,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。