• Hello,

    I have face one error message after Magento version update in 1.9.3.8

    The error message is:-

    Fatal error: Call to a member function getLayout() on a non-object in magento-wordpress-integration/mwi.php on line 110

    So can you please tell me what’s wrong after Magento update

Viewing 1 replies (of 1 total)
  • Copy the functions.php from app/code/core/Mage/Core/ to app/code/local/Mage/Core/

    and change function __() function

    from

    function __(){
    return Mage::app()->getTranslator()->translate(func_get_args());
    }

    to

    if(!function_exists(‘__’)) { function __() { return Mage::app()->getTranslator()->translate(func_get_args()); } }

Viewing 1 replies (of 1 total)
  • The topic ‘Member function getLayout() problem’ is closed to new replies.