destoon实现VIP排名一直在前面排序的方法

时间:2022-06-25 07:18:36

本文示例方法实现destoon排序方式为:一天内VIP登陆后,在点更新之后,会排在其他没有更新的VIP和普通会员前面。

其具体的操作步骤如下:

打开module\sell\admin\template\ 下setting.tpl.php文件
在大约71行找到:

?
1
<select onchange="if(this.value) Dd('order').value=this.value;">

并在其下行添加:

?
1
<option value="vip desc,editdate desc,edittime desc"<?php if($order == 'vip desc,editdate desc,edittime desc') echo ' selected';?>><?php echo VIP;?>级别,更新日期,更新时间</option>

即可实现该功能。