Это не другое меню, потому как повторяет основное. Точно нет никаких настроек внутри шаблона, других модулей меню в этой позиции? А если убрать нижнее, то верхнее останется? Может тогда просто оставить верхнее?
Поиском "syndicate" нашел в следующих файлах: 1) \templates\ja_teline_iii\layouts\blocks\header.php Код (CODE): <div id="ja-header" class="wrap"> <div class="main"> <div class="inner clearfix"> <?php $siteName = $this->sitename(); if ($this->getParam('logoType')=='image'): ?> <h1 class="logo"> <a href="index.php" title="<?php echo $siteName; ?>"><span><?php echo $siteName; ?></span></a> </h1> <?php else: $logoText = (trim($this->getParam('logoType-text-logoText'))=='')? $config->sitename : $this->getParam('logoType-text-logoText'); $sloganText = (trim($this->getParam('logoType-text-sloganText'))=='')? JText::_('SITE SLOGAN') : $this->getParam('logoType-text-sloganText');?> <div class="logo-text"> <h1><a href="index.php" title="<?php echo $siteName; ?>"><span><?php echo $logoText; ?></span></a></h1> <p class="site-slogan"><?php echo $sloganText;?></p> </div> <?php endif; ?> <?php if($this->countModules('search')) : ?> <div id="ja-search"> <jdoc:include type="modules" name="search" /> </div> <?php endif; ?> </div> <div class="ja-topbar clearfix"> <p class="ja-day"> <?php echo "<span class=\"day\">".date ('l')."</span>"; echo "<span class=\"date\">, ".date ('M')." ".date ('d').date ('S')."</span>"; ?> </p> <p class="ja-updatetime"><span><?php echo JText::_('Last update')?></span><em><?php echo $this->getLastUpdate(); ?></em></p> <?php if($this->countModules('headlines')) : ?> <jdoc:include type="modules" name="headlines" /> <?php endif; ?> <?php if($this->countModules('syndicate')) : ?> <div class="ja-syndicate"> <jdoc:include type="modules" name="syndicate" /> </div> <?php endif; ?> <?php $this->loadBlock ('topmega')?> </div> </div> </div> 2) \templates\ja_teline_iii\templateDetails.xml Код (CODE): <positions> <position>hornav</position> <position>breadcrumbs</position> <position>banner</position> <position>left</position> <position>right</position> <position>top</position> <position>search</position> <position>headlines</position> <position>meta-item</position> <position>megamenu</position> <position>ja-login</position> <position>ja-news</position> <position>ja-tabs</position> <position>ja-tabs1</position> <position>ja-tabs2</position> <position>ja-tabs3</position> <position>col-mass1</position> <position>col-mass2</position> <position>content-top</position> <position>content-bot</position> <position>user1</position> <position>user2</position> <position>user3</position> <position>user4</position> <position>user5</position> <position>user6</position> <position>user7</position> <position>user8</position> <position>user9</position> <position>user10</position> <position>footnav</position> <position>footer</position> <position>syndicate</position> <position>debug</position> </positions> 3) \templates\ja_teline_iii\css\template.css Код (CODE): .ja-syndicate { float: right; } .ja-syndicate a { border-left: 1px solid #ddd; width: 40px; height: 19px; line-height: 19px; display: block; color: #999; text-align: center; font-weight: bold; } .ja-syndicate a:hover, .ja-syndicate a:active, .ja-syndicate a:focus { border-left: 1px solid #ddd; background: #333; color: #fff; text-decoration: none;
Не помогло. После удаления в \templates\ja_teline_iii\layouts\blocks\header.php строки Код (CODE): <?php $this->loadBlock ('topmega')?> верхнее меню пропало. Хотя просмотром через Rds-bar количество внутренних ссылок осталось тем же, хотя верхнего дублирующего меню уже и не видно