destoon realizes the method that VIP ranking is always sorted in front

  • 2021-07-16 01:57:45
  • OfStack

The example method of this article implements the sorting method of destoon: after VIP logs in within 1 day, it will rank ahead of other VIP and ordinary members without update after point update.

The specific operation steps are as follows:

Open the file setting. tpl. php under module\ sell\ admin\ template\
Find it on about 71 lines:


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

And add:


<option value="vip desc,editdate desc,edittime desc"<?php if($order == 'vip desc,editdate desc,edittime desc') echo ' selected';?>><?php echo VIP;?> Level , Update Date , Update time </option>

This function can be realized.


Related articles: