仅当用户选择多个产品时才查看购物车页面

时间:2014-09-10 05:26:58

标签: wordpress woocommerce

我想仅在用户选择多个产品时查看购物车页面,否则我想直接将其重定向到结帐页面。

1 个答案:

答案 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.
?>