Mage::app()->getLayout()->getBlock('header') returning false in magento 1,7

时光毁灭记忆、已成空白 提交于 2020-02-02 16:00:32

问题


In welcome.php file of magento 1.7

Mage::app()->getLayout()->getBlock('header')->getWelcome(); getBlock('header') returning false please check code sample.

    protected function _toHtml()
    {
        if (isset($this->_blocks[$name])) {
            echo $this->_blocks[$name];
        } else {
            return Mage::app()->getLayout()->getBlock('header')->getWelcome();
            return false;
        }
    }
}

来源:https://stackoverflow.com/questions/59401533/mageapp-getlayout-getblockheader-returning-false-in-magento-1-7

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!