Magento 2'deki ürünün özel fiyatını özel kodla nasıl alabilirim?
Bu benim kodum
public function getProductCollection()
{
$collection = $this->_productCollectionFactory->create();
$collection->addAttributeToSelect('*');
$collection->setOrder('created_at', 'DESC');
// $collection->setPageSize(3); // fetching only 3 products
return $collection;
}
ve .phtml'deki çağrı işlevim
$productCollection = $block->getProductCollection();
$productCollection->setPageSize(2);
foreach ($productCollection as $product) {
echo $product->getName();
print_r($product->getTierPrice());
echo getName, getPrice, getÖzel fiyat işleri
ancak getTierPrice çalışmıyor.
ex. VIP üye kartım var (customer_group) Herkese açık grup VIP üye kartı göstermek istemiyorum Tüm grubu ayarlamıyorum