商圈和地区进行关联

2016-07-20 16:24 来源:www.chinab4c.com 作者:ecshop专家

目前系统地区支持四级分类,但是有时候客户要求五级 比如 中国 - 陕西 - 西安 - 碑林 - php服务中心商圈

实现方法异常简单 我们只需要修改 admin下templates下 area_list.htm


  1. {if $region_type eq '0'}{$lang.add_country}:
  2. {elseif $region_type eq '1'}{$lang.add_province}:
  3. {elseif $region_type eq '2'}{$lang.add_city}:
  4. {elseif $region_type eq '3'}{$lang.add_cantonal}:

  5. {elseif $region_type eq '4'}添加商圈:
  6. {/if}
复制代码



四十一行 {if $region_type < 4} 3改成4

通过以上方式就可实现

回答:
多谢大家支持!

齐老师,这样修改后在后台是可以配置第五级地区,但是在前台个人中心设置收货地址的时候,却不能选择第五级区域[attach]111610[/attach][attach]111609[/attach]


对,前台应该也需要开发吧,这个只是教后台怎么加