Skip to content

Instantly share code, notes, and snippets.

@ceckoslab
Created August 27, 2012 11:53
Show Gist options
  • Save ceckoslab/3487821 to your computer and use it in GitHub Desktop.
Save ceckoslab/3487821 to your computer and use it in GitHub Desktop.
//Replace
$menuIdentifiers = Mage::getModel('core/variable')->loadByCode('top_cms_menu')->getValue('text');
//With
$menuIdentifiers = Mage::getModel('core/variable')
->setStoreId(Mage::app()->getStore()->getId())
->loadByCode('top_cms_menu')->getValue('text');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment