1 / 21

OpenCart 產品設定

OpenCart 產品設定. 編輯項目. 前台. 後台. 貨幣設定. 商店設定. 基本資料. 前台. 後台. 三個價格又與促銷活動有關. 要經過稅率換算. 使用優惠價格. 決定庫存狀態. 庫存狀態設定. 促銷活動. 設定購買多少數量,促銷價格是多少,這也與稅率有關. 稅率計算. 設定稅率  稅類  指定給商品. 稅率與國家及地區有關. 基本資料. 預設不顯示. 顯示產品重量等資訊. catalog/view/theme/default/template/product/ product.tpl. 找到這段

Télécharger la présentation

OpenCart 產品設定

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. OpenCart產品設定

  2. 編輯項目 前台 後台

  3. 貨幣設定 商店設定

  4. 基本資料 前台 後台 三個價格又與促銷活動有關 要經過稅率換算 使用優惠價格 決定庫存狀態

  5. 庫存狀態設定

  6. 促銷活動 設定購買多少數量,促銷價格是多少,這也與稅率有關

  7. 稅率計算 設定稅率稅類指定給商品

  8. 稅率與國家及地區有關

  9. 基本資料 預設不顯示

  10. 顯示產品重量等資訊

  11. catalog/view/theme/default/template/product/product.tpl 找到這段 <span><?php echo $text_stock; ?></span> <?php echo $stock; ?> <?php if ($weight) { ?> 在上面那段的後面加上 <?php if ($weight) { ?> <span><?php echo $text_weight; ?></span> <?php echo $weight; ?><br /> <?php } ?>

  12. catalog/controller/product/product.php 找到 $this->data['text_stock'] = $this->language->get('text_stock'); 加上 $this->data['text_weight'] = $this->language->get('text_weight'); 找到 $this->data['points'] = $product_info['points']; 加上 $this->data['weight'] = $product_info['weight'];

  13. catalog/language/english/product/product.php 加上 $_['text_weight'] = 'weight'; catalog/language/zh-TW/product/product.php 加上 $_['text_weight'] = '重量';

  14. 關聯 前台

  15. 屬性 前台

  16. 選項設定 前台

  17. 分期付款(付款方式) 前台

  18. 圖片設置 前台

  19. 運費管理 前台購物車

  20. Google Map回傳圖片

  21. 只需要給緯度與精度 • http://maps.google.com/maps/api/staticmap?center=緯度,經度&zoom=16&markers=緯度,經度&size=300x300&sensor=false • 使用方式 • <imgsrc=“http://maps.google.com/maps/api/staticmap?center=緯度,經度&zoom=16&markers=緯度,經度&size=300x300&sensor=false” width=“寬度”height=“高度”>

More Related