当前位置:首页 > CMS教程 > ecshop > 列表

让ecshop的浏览历史排序显示方法

发布:smiling 来源: PHP粉丝网  添加日期:2014-11-18 09:52:43 浏览: 评论:0 

具体的修改方法,如下,首先打开ecshop系统文件 includes/lib_insert.php,找到 insert_history() 函数部分,将:

" WHERE $where AND is_on_sale = 1 AND is_alone_sale = 1 AND is_delete = 0";//开源软件:phpfensi.com

修改为:

" WHERE $where AND is_on_sale = 1 AND is_alone_sale = 1 AND is_delete = 0 order by INSTR('".$_COOKIE['ECS']['history']."',goods_id)";

这样就可以了.

Tags: ecshop浏览历史 ecshop排序显示

分享到:

相关文章