سؤال

I made the custom phtml and I have custom product collection. I just need to show the minimal price of associated simple product of grouped product.

Any help would be appreciated.

هل كانت مفيدة؟

المحلول

You just need to add this code in your phtml file. Variable lowest price has the minimal price.

$lowestprice = 0; $count = 0;
if ($_product->getTypeId() == 'grouped') {

    $usedProds = $_product->getTypeInstance(true)->getAssociatedProducts($_product);
    foreach ($usedProds as $child) {
        if ($child->getId() != $_product->getId()) {
            if ($count == 0){
                $lowestprice = $child->getPrice();
            }

            if ($child->getPrice() < $lowestprice){
                $lowestprice = $child->getPrice();
            }
        }
      $count++;
    }
    $finalPrice = $lowestprice;
}

I hope this will help

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى magento.stackexchange
scroll top