Magento Get Current Product ID

3:44 PM
How to get current product id in magento. Blow code will display currently loaded product id..



<!-- Magento Current Product Id -->
        <?php $current_product_id = $this->getProduct()->getId(); ?>

If above code not working then try below code..
<!-- Magento Current Product Id -->
<?php 
$current_product_id = Mage::registry('current_product')->getId();
?>

I am Web Developer and Web Designer. Also Part Time Blogger. Love To Code in HTML, CSS, JS, jQuery, Bootstrap, PHP, WordPress, Magento.

RELATED POSTS

Previous
Next Post »