dongshu4755 2017-08-23 20:07
浏览 83
已采纳

在OpenCart 3.0.x的顶层菜单中输入信息页面

All the help for OpenCart on internet is on *.tpl files... But OpenCart is updated now so the basic problem I'm facing is that I want to add an information page 'aboutus' in top menu. There's no HTML view which I can change so, I've a .twig file which only let categories show in top menu as follows:

{% if categories %}
<div class="container">
  <nav id="menu" class="navbar">
    <div class="navbar-header"><span id="category" class="visible-xs">{{ text_category }}</span>
      <button type="button" class="btn btn-navbar navbar-toggle" data-toggle="collapse" data-target=".navbar-ex1-collapse"><i class="fa fa-bars">    </i></button>
    </div>

    <div class="collapse navbar-collapse navbar-ex1-collapse">
      <ul class="nav navbar-nav">
        {% for category in categories %}
        {% if category.children %}


          <div class="dropdown-menu">
            <div class="dropdown-inner"> {% for children in category.children|batch(category.children|length / category.column|round(1, 'ceil')) %}
              <ul class="list-unstyled">
                {% for child in children %}
                <li><a href="{{ child.href }}">{{ child.name }}</a></li>
                {% endfor %}
              </ul>
              {% endfor %}</div>
     <a href="{{ category.href }}" class="see-all">{{ text_all}}{{category.name }}</a> </div>

        </li>

        {% else %}
        <li><a href="{{ category.href }}">{{ category.name }}</a></li>

       {% endif %}
        {% endfor %}

       <li><a href="{{ information.href }}">{{ information.href }}</a></li>

    </ul>

      </div>
    <ul class="nav navbar-nav">
    <li><a href="{{ localhost/ghazi/upload/about_us }}">About US</a></li>

    </ul>
    </nav>
    </div>
{% endif %} 

and the controller is menu.php as follows:

<?php
class ControllerCommonMenu extends Controller {
    public function index() {
        $this->load->language('common/menu');

        // Menu
        $this->load->model('catalog/category');

        $this->load->model('catalog/product');
        $this->load->model('catalog/information');
        $data['categories'] = array();

        $categories = $this->model_catalog_category->getCategories(0);

        foreach ($categories as $category) {
            if ($category['top']) {
                // Level 2
                $children_data = array();

                $children = $this->model_catalog_category->getCategories($category['category_id']);

                foreach ($children as $child) {
                    $filter_data = array(
                        'filter_category_id'  => $child['category_id'],
                        'filter_sub_category' => true
                    );

                    $children_data[] = array(
                        'name'  => $child['name'] . ($this->config->get('config_product_count') ? ' (' . $this->model_catalog_product->getTotalProducts($filter_data) . ')' : ''),
                        'href'  => $this->url->link('product/category', 'path=' . $category['category_id'] . '_' . $child['category_id'])
                    );
                }

                // Level 1
                $data['categories'][] = array(
                    'name'=> $category['name'],
                    'children' => $children_data,
                    'column'=> $category['column'] ? $category['column'] : 1,
                 'href'=>$this->url->link('product/category','path='.category['category_id'])
                );

            }
        }


        return $this->load->view('common/menu', $data);
        }
        }

I just want to show about us page in top menu

  • 写回答

1条回答 默认 最新

  • douhuigang9550 2017-08-24 05:48
    关注

    Since editing the controller to show a page is, in effect, similar to editing the template in that you're adjusting the code, I feel the simplest route would be to hard-code the URL on the twig file. Assuming you're going to add the menu-item at the end of the existing menu, you can try the code below:

    {% if categories %}
    <div class="container">
      <nav id="menu" class="navbar">
        <div class="navbar-header"><span id="category" class="visible-xs">{{ text_category }}</span>
          <button type="button" class="btn btn-navbar navbar-toggle" data-toggle="collapse" data-target=".navbar-ex1-collapse"><i class="fa fa-bars"></i></button>
        </div>
        <div class="collapse navbar-collapse navbar-ex1-collapse">
          <ul class="nav navbar-nav">
            {% for category in categories %}
            {% if category.children %}
            <li class="dropdown"><a href="{{ category.href }}" class="dropdown-toggle" data-toggle="dropdown">{{ category.name }}</a>
              <div class="dropdown-menu">
                <div class="dropdown-inner"> {% for children in category.children|batch(category.children|length / category.column|round(1, 'ceil')) %}
                  <ul class="list-unstyled">
                    {% for child in children %}
                    <li><a href="{{ child.href }}">{{ child.name }}</a></li>
                    {% endfor %}
                  </ul>
                  {% endfor %}</div>
                <a href="{{ category.href }}" class="see-all">{{ text_all }} {{ category.name }}</a> </div>
            </li>
            {% else %}
            <li><a href="{{ category.href }}">{{ category.name }}</a></li>
            {% endif %}
            {% endfor %}
            <li><a href="http://storeURL/index.php?route=information/information&information_id=4">About Us</a></li>  
          </ul>
        </div>
      </nav>
    </div>
    {% endif %} 
    

    Please confirm the ID of the information page is indeed "4" and change storeURL to that of your store.

    We could take it a step further and include the storeURL in the controller file and then reference that in the menu but I feel this is additional work that serves no real benefit, especially if you only want to show ONE information page in the top menu.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 基于卷积神经网络的声纹识别
  • ¥15 Python中的request,如何使用ssr节点,通过代理requests网页。本人在泰国,需要用大陆ip才能玩网页游戏,合法合规。
  • ¥100 为什么这个恒流源电路不能恒流?
  • ¥15 有偿求跨组件数据流路径图
  • ¥15 写一个方法checkPerson,入参实体类Person,出参布尔值
  • ¥15 我想咨询一下路面纹理三维点云数据处理的一些问题,上传的坐标文件里是怎么对无序点进行编号的,以及xy坐标在处理的时候是进行整体模型分片处理的吗
  • ¥15 CSAPPattacklab
  • ¥15 一直显示正在等待HID—ISP
  • ¥15 Python turtle 画图
  • ¥15 stm32开发clion时遇到的编译问题