We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2b5f71 commit c9602a5Copy full SHA for c9602a5
Block/Menu.php
@@ -87,7 +87,10 @@ public function __construct(
87
88
$this->_helper = $helper;
89
$this->_magicmenuCollectionFactory = $magicmenuCollectionFactory;
90
- $this->_sysCfg= (object) $this->_helper->getConfigModule();
+ $configModule = $this->_helper->getConfigModule();
91
+ if( is_null($configModule['topmenu']['notIncludeNav']) ) $configModule['topmenu']['notIncludeNav'] = '';
92
+ if( is_null($configModule['vmenu']['notIncludeNav']) ) $configModule['vmenu']['notIncludeNav'] = '';
93
+ $this->_sysCfg= (object) $configModule;
94
95
$this->serializer = $serializer ?: \Magento\Framework\App\ObjectManager::getInstance()
96
->get(\Magento\Framework\Serialize\Serializer\Json::class);
0 commit comments