코어 파일에 커스텀 기능을 넣으면서 특별 가격 과 함께 통상 가격 을 설정할 수 있습니다
vendor/magento/module-weee/Block/Item/Price/Renderer.php
public function getUnitItemPriceExclTax()
{
$priceExclTax = $this->getItem()->getProduct()->getPrice();
return $priceExclTax;
}
이 함수를 코어 파일로 호출하면
vendor/magento/module-weee/view/frontend/templates/checkout/cart/item/price/sidebar.phtml
두 가지 가격을 모두 정확하게 얻었지만 그 값을 무시하고 싶습니다.
vendor/magento/module-weee/Block/Item/Price/Renderer.php
내 맞춤 모듈을 차단하십시오.
아래 코드로 di.xml을 만들었습니다.
<preference for="Magento\Weee\Block\Item\Price\Renderer" type="<namespace\<module_name>\Block\Item\Price\Renderer"/>
그리고 그 getUnitItemPriceExclTax()
기능을 그 블록에 넣으십시오 .