Question

Given a store id, how do I get the website id that matches that store?

Was it helpful?

Solution

Like this:

Mage::getModel('core/store')->load($storeId)->getWebsiteId()

Or do a direct database lookup on the core_store table.

OTHER TIPS

Just for completeness: From the current store you're in, you could retrieve the websiteId as follows:

Mage::app()->getStore()->getWebsiteId(); 

In Magento 2 to you can find the Website Id using store id like this:

$this->_storeManager->getStore($storeID)->getWebsiteId();

Licensed under: CC-BY-SA with attribution
Not affiliated with magento.stackexchange
scroll top