Magento get cart single item price incl. tax

前端 未结 6 2235
傲寒
傲寒 2021-02-14 15:45

I have a pretty weird issue, I hope someone can help me with this.

Here are the major config settings that influence my problem:

  • Catalog prices in admin pa
6条回答
  •  旧时难觅i
    2021-02-14 15:47

    You can try This :

    $grandTotal = $this->helper('checkout/cart')->getQuote()->getGrandTotal();
    echo $text .= $this->__(' Total: %s', $this->helper('core')->formatPrice($grandTotal, false));
    

提交回复
热议问题