本文示例方法實現destoon的排序方式為:一天內VIP登陸後,在點更新之後,會排在其他沒有更新的VIP和普通會員前面。
其具體的操作步驟如下:
打開module\sell\admin\template\ 下setting.tpl.php文件
在大約71行找到:
<select onchange="if(this.value) Dd('order').value=this.value;">
並在其下行添加:
<option value="vip desc,editdate desc,edittime desc"<?php if($order == 'vip desc,editdate desc,edittime desc') echo ' selected';?>><?php echo VIP;?>級別,更新日期,更新時間</option>
即可實現該功能。