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

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

顯示運(yùn)費(fèi) WooCommerce

顯示運(yùn)費(fèi) WooCommerce

PHP
三國(guó)紛爭(zhēng) 2021-09-18 21:16:23
我正在使用 WooCommerce 的購(gòu)物車(chē)小部件 ->mini-cart.php 我正在通過(guò)它向它添加產(chǎn)品,AJAX并自己添加了一些元素。標(biāo)準(zhǔn)它在購(gòu)物車(chē)中顯示小計(jì)價(jià)格,但我想在它之后顯示運(yùn)費(fèi),然后顯示總價(jià)(subtotal + shipping)。所以購(gòu)物車(chē)看起來(lái)像這樣:- Products in cart - Subtotal - Shipping costs - Total price (shipping + subtotal)我已經(jīng)添加了總價(jià)code:<p><?php echo WC()->cart->get_cart_total(); ?></p>但是這個(gè)回聲與小計(jì)的價(jià)格相同,因?yàn)闆](méi)有添加運(yùn)費(fèi)。有人可以幫我加上運(yùn)費(fèi)嗎?一些鉤子或代碼。
查看完整描述

1 回答

?
阿波羅的戰(zhàn)車(chē)

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

要在購(gòu)物車(chē)頁(yè)面(或結(jié)帳頁(yè)面)中獲取并顯示所選的運(yùn)輸方式標(biāo)簽(以及其他相關(guān)數(shù)據(jù),如果需要):


foreach( WC()->session->get('shipping_for_package_0')['rates'] as $method_id => $rate ){

    if( WC()->session->get('chosen_shipping_methods')[0] == $method_id ){

        $rate_label = $rate->label; // The shipping method label name

        $rate_cost_excl_tax = floatval($rate->cost); // The cost excluding tax

        // The taxes cost

        $rate_taxes = 0;

        foreach ($rate->taxes as $rate_tax)

            $rate_taxes += floatval($rate_tax);

        // The cost including tax

        $rate_cost_incl_tax = $rate_cost_excl_tax + $rate_taxes;


        echo '<p class="shipping-total">

            <strong class="label">'.$rate_label.': </strong>

            <span class="totals">'. WC()->cart->get_cart_shipping_total() .'</span>

        </p>';

        break;

    }

}


查看完整回答
反對(duì) 回復(fù) 2021-09-18
  • 1 回答
  • 0 關(guān)注
  • 189 瀏覽

添加回答

舉報(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)