Woocommerce 在短代码中显示自定义购物车总数

Woocommerce displaying custom cart total in a shortcode

我正在尝试在短代码中显示 woocommerce 自定义购物车总金额。该代码采用购物车总计,然后减去 'funeral-types-new' 类别中任何产品的价格以显示小计。这是代码:

add_shortcode( 'quote-total', 'quote_total' );
function quote_total(){   

$total = $woocommerce->cart->total; 

    foreach ( WC()->cart->get_cart() as $cart_item_key => $cart_item ) {
    $_product   = apply_filters( 'woocommerce_cart_item_product', $cart_item['data'], $cart_item, $cart_item_key );

        if ( has_term( 'funeral-types-new', 'product_cat', $_product->id) ) {
            $disbursement = apply_filters( 'woocommerce_cart_item_price', WC()->cart->get_product_price( $_product ), $cart_item, $cart_item_key );
        }
}

$subtotal = $total-$disbursement;

echo '<div>'.$subtotal.'</div><div> + '.$disbursement.'</div>';

}

$disbursement 显示正常,但是 $subtotal 显示为 0,所以我认为 $subtotal = $total-$disbursement;?

部分可能有问题

非常感谢任何帮助。

你有没有想过使用

WC()->cart->get_subtotal();

您的代码中有很多错误,例如:

  • 在短代码中,显示从不回显,而是返回,
  • WC_Cart get_product_price() method显示格式化产品价格仅供显示, _ 要检查购物车项目上的产品类别,请始终使用 $cart_item['product_id'] 而不是...

所以试试:

add_shortcode( 'quote-total', 'get_quote_total' );
function get_quote_total(){
    $total        = WC()->cart->total;
    $disbursement = 0; // Initializng
    
    // Loop through cart items
    foreach ( WC()->cart->get_cart() as $cart_item_key => $cart_item ) {
        if ( has_term( array('funeral-types-new'), 'product_cat', $cart_item['product_id'] ) ) {
            $disbursement += $cart_item['line_total'] + $cart_item['line_tax'];
        }
    }
    
    $subtotal = $total - $disbursement;
    
    return '<div>'.wc_price($subtotal).'</div><div> + '.wc_price($disbursement).'</div>';
}

// USAGE: [quote-total] 
//    or: echo do_shortcode('[quote-total]');

它应该更好用。