Saya dapat mengatur harga Normal bersama dengan harga Khusus sambil menempatkan fungsi kustom di file inti
vendor/magento/module-weee/Block/Item/Price/Renderer.php
public function getUnitItemPriceExclTax()
{
$priceExclTax = $this->getItem()->getProduct()->getPrice();
return $priceExclTax;
}
Dan memanggil fungsi ini ke file inti,
vendor/magento/module-weee/view/frontend/templates/checkout/cart/item/price/sidebar.phtml
Jadi mendapatkan kedua harga dengan benar, tetapi saya ingin menimpanya
vendor/magento/module-weee/Block/Item/Price/Renderer.php
blokir pada modul khusus saya.
Saya telah membuat di.xml dengan kode di bawah ini:
<preference for="Magento\Weee\Block\Item\Price\Renderer" type="<namespace\<module_name>\Block\Item\Price\Renderer"/>
Dan cukup masukkan getUnitItemPriceExclTax()
fungsi itu di blok itu.