久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

  • <tfoot id='fM04s'></tfoot>
    1. <i id='fM04s'><tr id='fM04s'><dt id='fM04s'><q id='fM04s'><span id='fM04s'><b id='fM04s'><form id='fM04s'><ins id='fM04s'></ins><ul id='fM04s'></ul><sub id='fM04s'></sub></form><legend id='fM04s'></legend><bdo id='fM04s'><pre id='fM04s'><center id='fM04s'></center></pre></bdo></b><th id='fM04s'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='fM04s'><tfoot id='fM04s'></tfoot><dl id='fM04s'><fieldset id='fM04s'></fieldset></dl></div>
      <legend id='fM04s'><style id='fM04s'><dir id='fM04s'><q id='fM04s'></q></dir></style></legend>

        <bdo id='fM04s'></bdo><ul id='fM04s'></ul>
    2. <small id='fM04s'></small><noframes id='fM04s'>

        OpenCart:下拉標(biāo)題購物車信息的 div 在哪里?

        OpenCart: Where is the div for the drop down header cart info?(OpenCart:下拉標(biāo)題購物車信息的 div 在哪里?)
          <bdo id='JxEiL'></bdo><ul id='JxEiL'></ul>

          <i id='JxEiL'><tr id='JxEiL'><dt id='JxEiL'><q id='JxEiL'><span id='JxEiL'><b id='JxEiL'><form id='JxEiL'><ins id='JxEiL'></ins><ul id='JxEiL'></ul><sub id='JxEiL'></sub></form><legend id='JxEiL'></legend><bdo id='JxEiL'><pre id='JxEiL'><center id='JxEiL'></center></pre></bdo></b><th id='JxEiL'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='JxEiL'><tfoot id='JxEiL'></tfoot><dl id='JxEiL'><fieldset id='JxEiL'></fieldset></dl></div>

            1. <tfoot id='JxEiL'></tfoot>
              1. <small id='JxEiL'></small><noframes id='JxEiL'>

                  <legend id='JxEiL'><style id='JxEiL'><dir id='JxEiL'><q id='JxEiL'></q></dir></style></legend>

                    <tbody id='JxEiL'></tbody>

                  本文介紹了OpenCart:下拉標(biāo)題購物車信息的 div 在哪里?的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)吧!

                  問題描述

                  我正在嘗試設(shè)置 OpenCart 的樣式,但是我很難找到哪個 TPL 文件包含當(dāng)您單擊標(biāo)題中的購物車圖標(biāo)時出現(xiàn)的 div(向下滑動的迷你購物車" - 它允許您查看您的購物車而不去購物車頁面).

                  有誰知道我在哪里可以找到包含這個 div 的 .tpl 文件(在默認(rèn)結(jié)構(gòu)模板中)?謝謝

                  解決方案

                  為什么人們不給你投票?

                  #content DIV 位于 #cart DIV 中 - 您應(yīng)該搜索過這個.

                  打開/catalog/view/theme/default/template/common/header.tpl

                  購物車標(biāo)題在 echo

                  查看代碼視圖/catalog/view/theme/default/template/module/cart.tpl(v1.5.3.1版本)

                  該部分位于 .mini-cart-info 類的頂部.以下部分代碼片段的示例:

                  <div class="heading"><h4><?php echo $heading_title;?></h4><a><span id="cart-total"><?php echo $text_items;?></span></a></div><div class="內(nèi)容"><?php if ($products || $vouchers) { ?><div class="mini-cart-info"><表格><?php foreach ($products as $product) { ?><tr><td class="image"><?php if ($product['thumb']) { ?><a href="<?php echo $product['href']; ?>"><img src="<?php echo $product['thumb']; ?>"alt="<?php echo $product['name']; ?>"title="<?php echo $product['name']; ?>"/></a><?php } ?></td><td class="name"><a href="<?php echo $product['href']; ?>"><?php echo $product['name'];?></a><div>

                  I am trying to style OpenCart but am having difficulty finding which TPL file holds the div that appears when you click the Shopping Cart icon in the header (the 'mini cart' that slides down - it allows you to view what's in your cart without going to the cart page).

                  Does anyone know where I can find the .tpl file that has this div (in the default structure template)? Thanks

                  解決方案

                  Why did people downvote you?

                  The #content DIV sits within the #cart DIV - you should have searched this.

                  Open /catalog/view/theme/default/template/common/header.tpl

                  The cart header is in the echo

                  <?php echo $cart; ?>
                  

                  To see the code view /catalog/view/theme/default/template/module/cart.tpl (in version v1.5.3.1)

                  The section is in the top within .mini-cart-info class. Example from some of the code snippet below:

                  <div id="cart">
                    <div class="heading">
                      <h4><?php echo $heading_title; ?></h4>
                      <a><span id="cart-total"><?php echo $text_items; ?></span></a></div>
                    <div class="content">
                      <?php if ($products || $vouchers) { ?>
                      <div class="mini-cart-info">
                        <table>
                          <?php foreach ($products as $product) { ?>
                          <tr>
                            <td class="image"><?php if ($product['thumb']) { ?>
                              <a href="<?php echo $product['href']; ?>"><img src="<?php echo $product['thumb']; ?>" alt="<?php echo $product['name']; ?>" title="<?php echo $product['name']; ?>" /></a>
                              <?php } ?></td>
                            <td class="name"><a href="<?php echo $product['href']; ?>"><?php echo $product['name']; ?></a>
                              <div>
                  

                  這篇關(guān)于OpenCart:下拉標(biāo)題購物車信息的 div 在哪里?的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網(wǎng)!

                  【網(wǎng)站聲明】本站部分內(nèi)容來源于互聯(lián)網(wǎng),旨在幫助大家更快的解決問題,如果有圖片或者內(nèi)容侵犯了您的權(quán)益,請聯(lián)系我們刪除處理,感謝您的支持!

                  相關(guān)文檔推薦

                  Deadlock exception code for PHP, MySQL PDOException?(PHP、MySQL PDOException 的死鎖異常代碼?)
                  PHP PDO MySQL scrollable cursor doesn#39;t work(PHP PDO MySQL 可滾動游標(biāo)不起作用)
                  PHP PDO ODBC connection(PHP PDO ODBC 連接)
                  Using PDO::FETCH_CLASS with Magic Methods(使用 PDO::FETCH_CLASS 和魔術(shù)方法)
                  php pdo get only one value from mysql; value that equals to variable(php pdo 只從 mysql 獲取一個值;等于變量的值)
                  MSSQL PDO could not find driver(MSSQL PDO 找不到驅(qū)動程序)

                  <tfoot id='KU931'></tfoot>
                      <tbody id='KU931'></tbody>

                      <small id='KU931'></small><noframes id='KU931'>

                      <legend id='KU931'><style id='KU931'><dir id='KU931'><q id='KU931'></q></dir></style></legend>

                        • <bdo id='KU931'></bdo><ul id='KU931'></ul>
                          • <i id='KU931'><tr id='KU931'><dt id='KU931'><q id='KU931'><span id='KU931'><b id='KU931'><form id='KU931'><ins id='KU931'></ins><ul id='KU931'></ul><sub id='KU931'></sub></form><legend id='KU931'></legend><bdo id='KU931'><pre id='KU931'><center id='KU931'></center></pre></bdo></b><th id='KU931'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='KU931'><tfoot id='KU931'></tfoot><dl id='KU931'><fieldset id='KU931'></fieldset></dl></div>
                          • 主站蜘蛛池模板: 国产网站在线 | 激情五月婷婷 | wwwww在线观看 | 欧美日韩在线一区二区 | 亚洲国产高清高潮精品美女 | 亚洲一区二区三区免费观看 | 中文字幕精品一区二区三区精品 | www.jizzjizz| 人人澡人人射 | 久久久久久国产 | 久久精品亚洲精品 | 香蕉视频91 | 欧美在线视频一区二区 | 国产日韩欧美一区 | 国产精品日韩欧美一区二区 | 久久成人精品视频 | 亚洲精品888 | 午夜免费观看 | 91一区二区 | 欧美一级毛片在线播放 | 天天草视频 | 亚洲天堂男人的天堂 | 99久久久国产精品免费消防器 | 久久亚洲二区 | 91精品久久久久久久久中文字幕 | 国产精品久久久久久福利一牛影视 | 天天射影院 | 国产精品一区二区欧美黑人喷潮水 | 日韩有码一区 | 国产精品视频在线免费观看 | 91av视频在线观看 | 亚洲成人中文字幕 | 97狠狠干| 天天av天天好逼 | 91视频免费黄| 能看的av| 亚洲午夜在线 | 日韩精品在线看 | 成人小视频在线观看 | 99re在线视频观看 | 久久久久久毛片免费观看 |