First add and display this information:
1. Modify the get_consignee function of the lib_order.php file (line 1798)
Add the following code in front of return:
Copy the code The code is as follows:
$sql = "select region_name from ".$GLOBALS['ecs']->table('region') . " where region_id in(".$arr ['country'].",".$arr['province'].",". $arr['city'].",".$arr['district'].")";
$ address = $GLOBALS['db']->getAll($sql);
foreach($address as $value)
{
$arr['address1'] .= $value['region_name ']."-";
}
http://www.bkjia.com/PHPjc/321502.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/321502.htmlTechArticleFirst add and display this information: 1. Modify the get_consignee function (line 1798) of the lib_order.php file and add the following code in Before return: Copy the code as follows: $sql = "select region_name...