Magento Display Cross-Selling products on product detail page

Some time we need to display cross sell products on product page, you can use the code below to display cross sell products. [php] <?php if($_crossSellProducts = $_product->getCrossSellProducts()): ?> <div class="topproducts_containter"> <div class="topsellerTitle">TOP <?php echo strtoupper(Mage::getModel(‘catalog/layer’)->getCurrentCategory()->getName()); ?> PRODUCTS</div> <?php foreach ($_crossSellProducts as $_item): ?> <?php $_item = Mage::getModel(‘catalog/product’)->load($_item->getId()); ?> <div ...

Read More