Wie erhalte ich den Staffelpreis des Produkts in Magento 2 mit benutzerdefiniertem Code?
Das ist mein Code
public function getProductCollection()
{
$collection = $this->_productCollectionFactory->create();
$collection->addAttributeToSelect('*');
$collection->setOrder('created_at', 'DESC');
// $collection->setPageSize(3); // fetching only 3 products
return $collection;
}
und meine Aufruffunktion in .phtml
$productCollection = $block->getProductCollection();
$productCollection->setPageSize(2);
foreach ($productCollection as $product) {
echo $product->getName();
print_r($product->getTierPrice());
echo getName, getPrice, getSpecial price funktioniert
aber getTierPrice funktioniert nicht.
Ex. Ich habe eine VIP-Mitgliedskarte (customer_group). Ich möchte die VIP-Mitgliedskarte zum Tierpreis öffentlich zeigen und nicht alle Gruppen festlegen