購物車研究站-討論區首頁 |
說明 搜尋 會員 日曆 |
simmonhsu |
發表於: 2005-12-15, 08:40 PM
|
進階會員 所屬群組: 註冊會員 發表總數: 596 會員編號: 3971 註冊日期: -- |
目前版本 2.1 發表時間 2005-06-09
1.checkout_payment.php Fatal error: Call to undefined function: twe_draw_pull_down_menu() in /home/glcom/public_html/mom/checkout_payment.php on line 249 解決方式 開啟checkout_payment.php 找出 require_once(DIR_FS_INC . 'twe_check_stock.inc.php'); 下方加入 require_once(DIR_FS_INC . 'twe_draw_pull_down_menu.inc.php'); 主檔待修正 2.account_history.php 無法正確顯示購買的產品數量 解決方式 開啟account_history.php 找到 $products_query = "select count(*) as count from " . TABLE_ORDERS_PRODUCTS . " where orders_id = '" . $history['orders_id'] . "'"; 將$history['orders_id'] 改成 $history->fields['orders_id'] 主檔待修正 3.層級折扣的錯誤 前台的幣值轉換出問題 解決方式 打開 inc/twe_get_products_price.inc.php 找出 $price_string=twe_format_special_price($rabatt_string,$price_string,$price_special,$calculate_currencies=false,$quantity,$products_tax); 改成 $price_string=twe_format_special_price($rabatt_string,$price_string,$price_special,$calculate_currencies=true,$quantity,$products_tax); 主檔待修正 本篇文章已被 simmonhsu 於 2005-12-15, 08:45 PM 編輯過 |