這篇文章主要介紹“ecshop如何取消配送方式”,在日常操作中,相信很多人在ecshop如何取消配送方式問(wèn)題上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”ecshop如何取消配送方式”的疑惑有所幫助!接下來(lái),請(qǐng)跟著小編一起來(lái)學(xué)習(xí)吧!
創(chuàng)新互聯(lián)于2013年開(kāi)始,是專(zhuān)業(yè)互聯(lián)網(wǎng)技術(shù)服務(wù)公司,擁有項(xiàng)目成都網(wǎng)站制作、網(wǎng)站設(shè)計(jì)網(wǎng)站策劃,項(xiàng)目實(shí)施與項(xiàng)目整合能力。我們以讓每一個(gè)夢(mèng)想脫穎而出為使命,1280元界首做網(wǎng)站,已為上家服務(wù),為界首各地企業(yè)和個(gè)人服務(wù),聯(lián)系電話(huà):18980820575
ecshop取消配送方式的方法:1、找到并打開(kāi)“flow.dwt”文件,然后刪除“...”代碼;2、將”js/shopping_flow.js“中的”checkOrderForm(frm)“改為”if (document.getElementById(...)“即可。
ECSHOP去除配送方式
以2.7.3默認(rèn)版為例
1.在flow.dwt中刪除這一段
配送方式
{$lang.name}
{$lang.describe}
{$lang.fee}
{$lang.free_money}
{$lang.insure_fee}
{$shipping.shipping_desc}
{$shipping.format_shipping_fee}
{$shipping.free_money}
{$shipping.insure_formated}
{$lang.not_support_insure}
2.在js/shopping_flow.js中的checkOrderForm(frm)改為
function checkOrderForm(frm)
{
// 檢查用戶(hù)輸入的余額
if (document.getElementById("ECS_SURPLUS"))
{
var surplus = document.getElementById("ECS_SURPLUS").value;
var error = Utils.trim(Ajax.call('flow.php?step=check_surplus', 'surplus=' + surplus, null, 'GET', 'TEXT', false));
if (error)
{
try
{
document.getElementById("ECS_SURPLUS_NOTICE").innerHTML = error;
}
catch (ex)
{
}
return false;
}
}
// 檢查用戶(hù)輸入的積分
if (document.getElementById("ECS_INTEGRAL"))
{
var integral = document.getElementById("ECS_INTEGRAL").value;
var error = Utils.trim(Ajax.call('flow.php?step=check_integral', 'integral=' + integral, null, 'GET', 'TEXT', false));
if (error)
{
return false;
try
{
document.getElementById("ECS_INTEGRAL_NOTICE").innerHTML = error;
}
catch (ex)
{
}
}
}
frm.action = frm.action + '?step=done';
return true;
}
3.在flow.php中 if ($_REQUEST['step'] == 'done'中注釋掉
if ($order['order_amount'] > 0)
{
$payment = payment_info($order['pay_id']);
include_once('includes/modules/payment/' . $payment['pay_code'] . '.php');
$pay_obj = new $payment['pay_code'];
$pay_online = $pay_obj->get_code($order, unserialize_config($payment['pay_config']));
$order['pay_desc'] = $payment['pay_desc'];
$smarty->assign('pay_online', $pay_online);
}
和
if(isset($is_real_good))
{
$sql="SELECT shipping_id FROM " . $ecs->table('shipping') . " WHERE shipping_id=".$order['shipping_id'] ." AND enabled =1";
if(!$db->getOne($sql))
{
show_message($_LANG['flow_no_shipping']);
}
}
4.在flow.dwt中的中的文字可以自己定義。
到此,關(guān)于“ecshop如何取消配送方式”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)?lái)更多實(shí)用的文章!