Get Product for a Specific Store in Magento
2 June 2009
One Comment
Here is the way to get product information for a specific store view in Magento.
<?php $product = Mage::getModel('catalog/product')->setStoreId(Mage::app()->getStore()->getId())->load($productId); ?>
And get product description:
<?php echo $this->helper('catalog/output')->productAttribute($product, nl2br($product->getDescription()), 'description'); ?>
Related posts:

This is great article. Thank Asia Connect!
Leave your response!