第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

Woocommerce 以短代碼顯示自定義購(gòu)物車(chē)總數(shù)

Woocommerce 以短代碼顯示自定義購(gòu)物車(chē)總數(shù)

PHP
慕森卡 2024-01-19 10:27:09
我正在嘗試在短代碼中顯示 woocommerce 自定義購(gòu)物車(chē)總金額。該代碼獲取購(gòu)物車(chē)總計(jì),然后減去“葬禮類(lèi)型新”類(lèi)別中任何產(chǎn)品的價(jià)格以顯示小計(jì)。這是代碼: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,所以我認(rèn)為 $subtotal = $total-$disbursement; 部分可能有問(wèn)題?非常感謝任何幫助。
查看完整描述

2 回答

?
猛跑小豬

TA貢獻(xiàn)1858條經(jīng)驗(yàn) 獲得超8個(gè)贊

您的代碼中有很多錯(cuò)誤,例如:

  • 在短代碼中,顯示永遠(yuǎn)不會(huì)回顯而是返回,

  • WC_Cart?get_product_price()方法顯示格式化的產(chǎn)品價(jià)格僅用于顯示,_要檢查購(gòu)物車(chē)項(xiàng)目上的產(chǎn)品類(lèi)別,請(qǐng)始終使用 $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]');

它應(yīng)該更好地工作。


查看完整回答
反對(duì) 回復(fù) 2024-01-19
?
智慧大石

TA貢獻(xiàn)1946條經(jīng)驗(yàn) 獲得超3個(gè)贊

你有沒(méi)有想過(guò)使用

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


查看完整回答
反對(duì) 回復(fù) 2024-01-19
  • 2 回答
  • 0 關(guān)注
  • 251 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)