Get product’s related products based on rule
I am trying to get the related products from a specific product using the function getRelatedProducts. $relatedProductsArray = $productModel->getRelatedProducts(); if($relatedProductsArray && count($relatedProductsArray) > 0){ foreach($relatedProductsArray as $_relatedProduct){ … } } It works when the related products are assigned directly to… Read More »Get product’s related products based on rule