ECSHOP購物車頁面顯示商品簡單描述

2022-08-02 20:54:08 字數 706 閱讀 5799

1、這裡說的商品簡單描述,不是商品的詳細資訊,而是後台編輯商品時在「其他資訊」標籤欄填寫的那個「商品簡單描述」,即goods_brief欄位

2、修改lib_order.php檔案的get_cart_goods()函式部分

$goods_thumb = $globals['db']->getone("select `goods_thumb` from " . $globals['ecs']->table('goods') . " where `goods_id`=''");

$row['goods_thumb'] = get_image_path($row['goods_id'], $goods_thumb, true);

修改為

$goods_thumb = $globals['db']->getrow("select `goods_thumb`,`goods_brief` from " . $globals['ecs']->table('goods') . " where `goods_id`=''");

$row['goods_thumb'] = get_image_path($row['goods_id'], $goods_thumb['goods_thumb'], true

);$row['goods_brief']=$goods_thumb['goods_brief'];

3、在模板檔案(flow.dwt)合適位置呼叫即可:

Ecshop購物車或結算頁面顯示商品品牌

以ecshop預設程式及模板為例 1 先開啟 includes lib order.php 檔案 建議使用editplus 找到 大概是在873行 arr key formated subtotal price format value subtotal false 在它的下面增加以下 sql se...

ECSHOP購物車頁面顯示商品簡單描述的實現方法

最近看到有朋友有這方面的www.cppcns.com需求,就整理了一下,寫出來供有同樣需求的朋www.cppcns.com友備用,這裡說的商品簡單描述,不是商品的詳細資訊,而是後台編輯商品時在 其他資訊 標籤欄填寫的那個 商品簡單描述 即goods brief欄位,修改前請注意備份相關的系統檔案。修...

ECSHOP批量新增商品到購物車

ecshop是一款開源的網上商店系統,在我心目中可以算得上網上 界的wordpress了。本文介紹如何實現在ecshop中批量新增商品到購物車。大家都知道,預設的ecshop只能單件點選 新增到購物車 add to cart 實現一件一件的新增商品到購物車,無法經過多選之後批量新增。其實實現的方法比...