多嚿魚教室

Opencart優化技巧

Opencart Modules有三個模版是用來展示商品資料,就是Special(特價商品)、Featured(精選商品)和Latest(最新商品)。每筆商品資料下都有 按鈕,方便客人立即選購。但事實上,這按鈕除了佔用版面空間外就一點用處也沒有!因為現實中只有傻瓜和購物成癮的人才會一眼也不看商品的詳細資料就立即選購。
Finding Solution
以下方法適用於Opencart v1.5.1.3
移除“Add to Cart”按鈕的方法:
  1. 開啟[catalog/view/theme/default/template/module]。
  2. 編輯三個檔案:[special.tpl]、[featured.tpl]、[special.tpl]。
  3. 搜尋並刪除以下程式碼:
      <div class="cart"><a  onclick="addToCart('<?php echo $product['product_id']; ?>');"  class="button"><span><?php echo $button_cart;  ?></span></a></div>
原本左狗住嗮的按鈕就消失了。

<p>
&#60;!--<br />
Make sure that you have properly installed Opencart vQmod.<br />
Copy this page of script.<br />
Save as a .xml file of utf-8 encoding without BOM into the directory [vqmod/xml].<br />
Name the file as you like.<br />
--&gt;</p>
<pre contenteditable="true">
&lt;?xml version=&quot;1.0&quot; encoding="utf-8"?&gt;<br />&lt;modification&gt;
&lt;id&gt;Hidden footer details&lt;/id&gt; &lt;version&gt;1.0.0&lt;/version&gt; &lt;author&gt;Flexidigi Solution Ltd&lt;/author&gt;<br /> &lt;file name=&quot;catalog/view/theme/default/template/module/latest.tpl&quot;&gt;<br />  &lt;operation error=&quot;skip&quot;&gt;<br />   &lt;search position=&quot;replace&quot;&gt;&lt;![CDATA[<br />   &lt;div class=&quot;cart&quot;&gt;<br />   ]]&gt;&lt;/search&gt;<br />   &lt;add&gt;&lt;![CDATA[&lt;div class=&quot;cart&quot; style=&quot;display:none;&quot;&gt;]]&gt;&lt;/add&gt;<br />  &lt;/operation&gt;<br /> &lt;/file&gt;<br /> &lt;file name=&quot;catalog/view/theme/default/template/module/featured.tpl&quot;&gt;<br />  &lt;operation error=&quot;skip&quot;&gt;<br />   &lt;search position=&quot;replace&quot;&gt;&lt;![CDATA[<br />   &lt;div class=&quot;cart&quot;&gt;<br />   ]]&gt;&lt;/search&gt;<br />   &lt;add&gt;&lt;![CDATA[&lt;div class=&quot;cart&quot; style=&quot;display:none;&quot;&gt;]]&gt;&lt;/add&gt;<br />  &lt;/operation&gt;<br /> &lt;/file&gt;<br /> &lt;file name=&quot;catalog/view/theme/default/template/module/special.tpl&quot;&gt;<br />  &lt;operation error=&quot;skip&quot;&gt;<br />   &lt;search position=&quot;replace&quot;&gt;&lt;![CDATA[<br />   &lt;div class=&quot;cart&quot;&gt;<br />   ]]&gt;&lt;/search&gt;<br />   &lt;add&gt;&lt;![CDATA[&lt;div class=&quot;cart&quot; style=&quot;display:none;&quot;&gt;]]&gt;&lt;/add&gt;<br />  &lt;/operation&gt;<br /> &lt;/file&gt;<br />&lt;/modification&gt;</pre>