Get the store id from the store code
$store_id = Mage::app()->getStore($storeCode)->getId(); |
$store_id = Mage::getModel("core/store")->load($storeCode, "code"); |
$store_id = Mage::app()->getStore($storeCode)->getId(); |
$store_id = Mage::getModel("core/store")->load($storeCode, "code"); |