제품 magento2의 등급 가격을 얻는 방법?
사용자 지정 코드를 사용하여 Magento 2에서 제품의 계층 가격을 얻는 방법은 무엇입니까? 이것은 내 코드입니다 public function getProductCollection() { $collection = $this->_productCollectionFactory->create(); $collection->addAttributeToSelect('*'); $collection->setOrder('created_at', 'DESC'); // $collection->setPageSize(3); // fetching only 3 products return $collection; } .phtml의 호출 함수 $productCollection = $block->getProductCollection(); $productCollection->setPageSize(2); foreach ($productCollection as $product) { echo $product->getName(); print_r($product->getTierPrice()); …