Hello,
Please try with steps:
1. Open templates/sj_worldnews/includes/frame_inc.php, find this code:
if(strpos($windows_main_layout, '.xml') == false) $windows_main_layout = $windows_main_layout.'.xml';
and change to:
$windows_main_layout = $windows_main_layout != '' ? $windows_main_layout : 'main-right.xml';
if(strpos($windows_main_layout, '.xml') == false) $windows_main_layout = $windows_main_layout.'.xml';
2. Open templates/sj_worldnews/includes/yt_template.class.php,
find:
'menutype' => $this->getParam('menutype'),
and change to:
'menutype' => $this->getParam('menutype', 'mainmenu'),
Find:
'menustyle' => $this->getParam('menustyle'),
and change to:
'menustyle' => $this->getParam('menustyle', 'mega'),
Thanks