Поставил ocstore_v1.5.4.1 на него шаблон BigDes.com-SimphonyOfColor-theme итого получилось следующее http://3.unet.biz.ua в верху горизонтально есть список категорий их заменить на следующее Главная Каталог Почему мы Гарантия Доставка и оплата Опт Отзывы Контакты Где и каким образом это можно изменить ???
как вариант можно поставить модуль верхнего меню, например http://www.opencart.com/index.php?r...ion/info&extension_id=6678&filter_search=menu
Код: <ul> <?php foreach ($categories as $category) { ?> <li><?php if ($category['active']) { ?> <a href="<?php echo $category['href']; ?>" class="active"><?php echo $category['name']; ?></a> <?php } else { ?> <a href="<?php echo $category['href']; ?>"><?php echo $category['name']; ?></a> <?php } ?> <?php if ($category['children']) { ?> <div> <?php for ($i = 0; $i < count($category['children']) { ?> <ul> <?php $j = $i + ceil(count($category['children']) / $category['column']); ?> <?php for (; $i < $j; $i++) { ?> <?php if (isset($category['children'][$i])) { ?> <li><a href="<?php echo $category['children'][$i]['href']; ?>"><?php echo $category['children'][$i]['name']; ?></a></li> <?php } ?> <?php } ?> </ul> <?php } ?> </div> <?php } ?> </li> <?php } ?> </ul> Вместо етого вставте : Код: <ul > <li id="homelink"><a href="<?php echo $home; ?>" title="<?php echo $text_home; ?>"><?php echo $text_home; ?></i></a></li> <li><a href="http://test.часы.net/index.php?route=information/information&information_id=4">О нас</a></li> <li><a href="http://test.часы.net/index.php?route=information/information&information_id=6">Оплата и доставка</a></li> <li><a href="http://test.часы.net/index.php?route=information/information&information_id=3">Гарантии</a></li> <li><a href="http://test.часы.net/index.php?route=information/information&information_id=5">Оптовикам</a></li> <li><a href="http://test.часы.net/index.php?route=information/contact">Контакты</a></li> <li><di id="outercart"><?php echo $cart; ?></di></li> </ul> Ето как самый простой вариант. P.S. Ну я думаю Вы знаете в каком ето файле.(header.tpl)
Случайно у вас не завалялся данный модуль ??? --- Добавлено, 1 окт 2013 --- Где знаю, нашел заменил Но выводит не в ряд а в столб и вместо русских букв иероглифы, понимаю что возможно глупый вопрос, но помогите начинающему ламеру....
Разобрался может кому пригодиться в catalog\view\theme\bigdessoc\template\common\header.tpl заменил на <ul > <div id="links"> <a href="<?php echo $home; ?>"><?php echo $text_home; ?></a><span class="rz"></span> <a href="/index.php?route=product/category&path=20"><?php echo $text_categorii; ?></a><span class="rz"></span> <a href="/index.php?route=information/information&information_id=6"><?php echo $text_pochemu; ?></a><span class="rz"></span> <a href="/index.php?route=information/information&information_id=3"><?php echo $text_garanty; ?></a><span class="rz"></span> <a href="/index.php?route=information/information&information_id=5"><?php echo $text_oplata; ?></a><span class="rz"></span> <a href="/index.php?route=information/information&information_id=7"><?php echo $text_opt; ?></a><span class="rz"></span> <a href="/index.php?route=product/testimonial"><?php echo $text_testimonial; ?></a><span class="rz"></span> <a href="/index.php?route=information/contact"><?php echo $text_continfo; ?></a><span class="rz"></span> </div> </ul> в catalog\language\russian\common\header.tpl добавил описание $_['text_testimonial'] = '<a href="/index.php?route=product/testimonial">Отзывы</a>'; $_['text_categorii'] = '<a href="/index.php?route=product/category&path=20">Каталог</a>'; $_['text_pochemu'] = '<a href="/index.php?route=information/information&information_id=6">Почему мы</a>'; $_['text_garanty'] = '<a href="/index.php?route=information/information&information_id=3">Гарантия</a>'; $_['text_oplata'] = '<a href="/index.php?route=information/information&information_id=5">Доставка и оплата</a>'; $_['text_opt'] = '<a href="/index.php?route=information/information&information_id=7">Опт</a>'; в catalog\controller\common\header.tpl добавил переменные $this->data['text_testimonial'] = $this->language->get('text_testimonial'); $this->data['text_categorii'] = $this->language->get('text_categorii'); $this->data['text_pochemu'] = $this->language->get('text_pochemu'); $this->data['text_garanty'] = $this->language->get('text_garanty'); $this->data['text_oplata'] = $this->language->get('text_oplata'); $this->data['text_opt'] = $this->language->get('text_opt'); И все заработало
Вместо Код: <a href="/index.php?route=information/information&information_id=6"><?php echo $text_pochemu; ?></a><span class="rz"></span> написать: Код: <a href="/index.php?route=information/information&information_id=6"><font size="5"><?php echo $text_pochemu; ?></font></a><span class="rz"></span>