2014-01-14 97 views
2

使用woocommerce,如果購物車中只有一件商品,我需要一種方法來刪除結帳中的小計。刪除woocommerce中的小計

任何人都知道什麼是最好的方式來做到這一點,怎麼做?

回答

2

你總是可以放一個if語句,cart-> get_total(); ?>,在你cart.php文件中。不知道它是否是推車的PHP,但類似的東西。

請注意。更新後,這將消失。所以請在你的孩子主題中創建它。

喜歡的東西:

$something = echo $woocommerce->cart->get_total(); 
global $woocommerce; 

if (sizeof($woocommerce->cart->cart_contents) == 1) : 
$somthing = ''; 
endif; 


<strong>$somthing</strong> 
0

你可以重寫, '回顧 - order.php' 模板文件位於 '結賬' 目錄。

您可以添加按照上述「車 - 小計」階級狀況,

<?php if(WC()->cart->cart_contents_count != 1) : ?> 
    <tr class="cart-subtotal"> 
    <th><?php _e('Subtotal', 'woocommerce'); ?></th> 
    <td><?php wc_cart_totals_subtotal_html(); ?></td> 
    </tr> 
<?php endif; ?>