Showing posts with label How to get cross sell products on product page magento. Show all posts
Showing posts with label How to get cross sell products on product page magento. Show all posts

Tuesday, 23 December 2014

Get cross sell products on product page magento


Get cross sell products on product page magento

Write below code in view.phtml file.
<?php
$crosssell = $_product->getCrossSellProducts();
if(count($crosssell) > 0){
    foreach($crosssell as $_crosssell)
    {
        $productId = $_crosssell->getId();
        $crossModel = Mage::getModel('catalog/product')->load($productId);
        $pName = $crossModel->getName();
        $price = $this->getPriceHtml($crossModel, true, '-crosssell');
        $crosssellImg = $this->helper('catalog/image')->init($crossModel, 'image')->keepFrame(false)->resize(400,600);
    }
}      
?>