How Can I Get Magento Product’s Status For A Specific Store

My Magento site has multiple stores, I would like to get a product’s status for a specific store

When you load Magento product object, you can set store id. Here is the example

$product = Mage::getModel('catalog/product')->setStoreId($storeId)->load($productId);
$status = $product->getStatus();
0 0 votes
Article Rating
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments