Magento 2는 미니 카트에 특별 가격으로 정상 가격을 보여줍니다.
코어 파일에 커스텀 기능을 넣으면서 특별 가격 과 함께 통상 가격 을 설정할 수 있습니다 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을 …