请问什么地方修改显示数目的?

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

请问什么地方修改显示数目的?
我想自定义在首页显示的数目、行数和列数


回答:
需要修改数据库表ecs_template中的参数设置

如果使用的不是默认的主题,而ecs_template没有你正在使用的主题,则可以执行:mysql> insert into ecs_template (filename,region,library,sort_order,id,type,the
e) select filename,region,library,sort_order,id,type,'002' from ecs_template; (比如主题名为“002”)

然后通过执行SQL语句修改参数:mysql> update ecs_template set number=4 where theme='002' and library like '%rec
ommend%'\G (比如修改后的数目是显示4个商品)

修改之后,清除缓存(此按钮在后台管理右上角)。