我想仅在用户选择多个产品时查看购物车页面,否则我想直接将其重定向到结帐页面。
答案 0 :(得分:0)
<?php
// Add this code in header file.
if(is_cart()){
global $woocommerce;
$total = $woocommerce->cart->cart_contents_count;
if($total<=1){
?>
<script>window.location="<?php echo esc_url(home_url('checkout'));?>";</script>
<?php
}
}
// Note: if You are selected 1 product 3 times the above code is not working.
?>