$order = Mage::getModel('sales/order')->load(121); //use an entity id here $ storeId = $order->getStoreId(); // Here is your will get store id of that order. How to get ...
Mage::getModel('core/store')->load($o->getStoreId())->getWebsiteId(). The above code should get the website id of the store that your order ...
Haven't tested this but I seem to remember you can get the ID by using the method loadConfig in the model Mage_Core_Model_Store.
To get information about the current store from anywhere in Magento, use: getStore();. This will give you a ...
Like this: Mage::getModel('core/store')->load($storeId)->getWebsiteId(). Or do a direct database lookup on the core_store table.
Get Store Id From Order Magento : Useful Links. Related searches. magento get store id from order · magento 2 get store id from order · magento 1.9 get store id ...
Let's say $website is the instance of your website entity. You can get the store view ids for a website like this: $storeIds = $website->getStoreIds ...
Magento – Get Current Store Details (ID, Code, Name and Status). Post author By Kathir
magento 2 get store id from order · magento 2 get customer name from order · get store code from order ...
Get current store in Magento. getStore();. This approach returns an instance of Mage_Core_Model_Store class and can be ...