Здравствуйте. Я - новичок, с opencart работаю впервые. На ocstore 1.5.5.2 решил поставить тему http://themeforest.net/item/responsive-opencart-theme-bossthemes-topwear/full_screen_preview/4837263 , которая сама включает Boss Mega Menu. Проблема в том, что данное меню не выводится(создан 1 пункт меню, "главная"). Меню на главной выглядит так:
<div class="boss_menu">
<div class="container_24">
<div id="megamenu-responsive" class="hide-on-desktop hide-on-tablet">
<ul id="megamenu-responsive-root">
<li class="menu-toggle"><p></p>Navigation</li>
<li class="root">
<ul>
<li class="parent"><p>+</p><a href="http://magaz:81/desktops/">Компьютеры</a>
<ul>
<li><a href="http://magaz:81/desktops/pc/">PC (0)</a></li>
<li><a href="http://magaz:81/desktops/mac/">Mac (1)</a></li>
</ul>
</li>
<li class="parent"><p>+</p><a href="http://magaz:81/index.php?route=product/category&path=18">Ноутбуки</a>
<ul>
<li><a href="http://magaz:81/index.php?route=product/category&path=18_46">Macs (0)</a></li>
<li><a href="http://magaz:81/index.php?route=product/category&path=18_45">Windows (0)</a></li>
</ul>
</li>
<li class="parent"><p>+</p><a href="http://magaz:81/index.php?route=product/category&path=25">Компоненты</a>
<ul>
<li><a href="http://magaz:81/index.php?route=product/category&path=25_32">Веб-камеры (0)</a></li>
<li><a href="http://magaz:81/index.php?route=product/category&path=25_28">Мониторы (2)</a></li>
<li><a href="http://magaz:81/index.php?route=product/category&path=25_29">Мышки (0)</a></li>
<li><a href="http://magaz:81/index.php?route=product/category&path=25_30">Принтеры (0)</a></li>
<li><a href="http://magaz:81/index.php?route=product/category&path=25_31">Сканеры (0)</a></li>
</ul>
</li>
<li><a href="http://magaz:81/index.php?route=product/category&path=57">Планшеты</a>
</li>
<li><a href="http://magaz:81/index.php?route=product/category&path=17">Програмное обеспечение</a>
</li>
<li><a href="http://magaz:81/index.php?route=product/category&path=24">Телефоны и PDA</a>
</li>
<li><a href="http://magaz:81/index.php?route=product/category&path=33">Камеры</a>
</li>
<li class="parent"><p>+</p><a href="http://magaz:81/mp3-players/">MP3 Плееры</a>
<ul>
<li><a href="http://magaz:81/index.php?route=product/category&path=34_43">test 11 (0)</a></li>
<li><a href="http://magaz:81/index.php?route=product/category&path=34_44">test 12 (0)</a></li>
<li><a href="http://magaz:81/index.php?route=product/category&path=34_47">test 15 (0)</a></li>
<li><a href="http://magaz:81/index.php?route=product/category&path=34_48">test 16 (0)</a></li>
<li><a href="http://magaz:81/index.php?route=product/category&path=34_49">test 17 (0)</a></li>
</ul>
<ul>
<li><a href="http://magaz:81/index.php?route=product/category&path=34_50">test 18 (0)</a></li>
<li><a href="http://magaz:81/index.php?route=product/category&path=34_51">test 19 (0)</a></li>
<li><a href="http://magaz:81/index.php?route=product/category&path=34_52">test 20 (0)</a></li>
<li><a href="http://magaz:81/index.php?route=product/category&path=34_53">test 21 (0)</a></li>
<li><a href="http://magaz:81/index.php?route=product/category&path=34_54">test 22 (0)</a></li>
</ul>
<ul>
<li><a href="http://magaz:81/index.php?route=product/category&path=34_55">test 23 (0)</a></li>
<li><a href="http://magaz:81/index.php?route=product/category&path=34_56">test 24 (0)</a></li>
<li><a href="http://magaz:81/index.php?route=product/category&path=34_38">test 4 (0)</a></li>
<li><a href="http://magaz:81/index.php?route=product/category&path=34_37">test 5 (0)</a></li>
<li><a href="http://magaz:81/index.php?route=product/category&path=34_39">test 6 (0)</a></li>
</ul>
<ul>
<li><a href="http://magaz:81/index.php?route=product/category&path=34_40">test 7 (0)</a></li>
<li><a href="http://magaz:81/index.php?route=product/category&path=34_41">test 8 (0)</a></li>
<li><a href="http://magaz:81/index.php?route=product/category&path=34_42">test 9 (0)</a></li>
</ul>
</li>
<li><a href="index.php?route=bossblog/bossblog">Blog</a></li>
</ul>
</li>
</ul>
</div>
<script type="text/javascript">
/*Pc responsive*/
$('document').ready(function(){
$('#megamenu-responsive-root li.parent').prepend('<p>+</p>');
$('.menu-toggle').click(function(){
$('.root').toggleClass('open');
});
$('#megamenu-responsive-root li.parent > p').click(function(){
if ($(this).text() == '+'){
$(this).parent('li').children('ul').slideDown(300);
$(this).text('-');
}else{
$(this).parent('li').children('ul').slideUp(300);
$(this).text('+');
}
});
});
/*$('document').ready(function(){
iconClickIpad();
});*/
</script>
</div>
</div>