新聞中心
1:如何設置 ecshop “ 收貨人姓名”為可選項?
成都創(chuàng)新互聯(lián)公司-專業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設、高性價比金壇網(wǎng)站開發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫,直接使用。一站式金壇網(wǎng)站制作公司更省心,省錢,快速模板網(wǎng)站建設找我們,業(yè)務覆蓋金壇地區(qū)。費用合理售后完善,10多年實體公司更值得信賴。
打開js/shopping_flow.js文件,找到checkConsignee()函數(shù)
/*if (Utils.isEmpty(frm.elements['consignee'].value))
{
err = true;
msg.push(consignee_not_null);
}*/
注釋掉這一段。
flow.php中
/*if (!check_consignee_info($consignee, $flow_type))
{
ecs_header("Location: flow.php?step=consignee\n");
exit;
}*/
這段該注釋掉
2:如何設置 ecshop "詳細地址"為選填項
打開js/shopping_flow.js文件,找到checkConsignee()函數(shù)
注釋掉下面
/*
if (frm.elements['address'] && Utils.isEmpty(frm.elements['address'].value))
{
err = true;
msg.push(address_not_null);
}*/
flow.php中
/*if (!check_consignee_info($consignee, $flow_type))
{
ecs_header("Location: flow.php?step=consignee\n");
exit;
}*/
這段該注釋掉
3:如何設置 ecshop "電子郵件地址"為選填項
打開js/shopping_flow.js文件,找到checkConsignee()函數(shù)
注釋掉下面
if ( ! Utils.isEmail(frm.elements['email'].value))
{
err = true;
msg.push(invalid_email);
}
flow.php中
/*if (!check_consignee_info($consignee, $flow_type))
{
ecs_header("Location: flow.php?step=consignee\n");
exit;
}*/
這段該注釋掉
4:如何設置 ecshop"電話"為選填項
打開js/shopping_flow.js文件,找到checkConsignee()函數(shù)
注釋掉下面
/*
if (Utils.isEmpty(frm.elements['tel'].value))
{
err = true;
msg.push(tele_not_null);
}
else
{
if (!Utils.isTel(frm.elements['tel'].value))
{
err = true;
msg.push(tele_invaild);
}
}
*/
flow.php中
/*if (!check_consignee_info($consignee, $flow_type))
{
ecs_header("Location: flow.php?step=consignee\n");
exit;
}*/
這段該注釋掉
注意最后一步需要修改ia
去掉email必填項,還必須在修改 includes/lib_order.php文件
將 “check_consignee_info”函數(shù)中的檢測語句修改,
本文名稱:ecshop收貨人信息必填修改,修改必填項,刪除必填項,修改刪除
當前路徑:http://biofuelwatch.net/article/scdcgh.html