Quote:
Originally Posted by Pligglet Pligg submissions currently follow a predictable path Upcoming->New->Page 1->Page 2->Page 3.
It would be nice to have a mode similar to reddit where the position of a submission rises and falls based on votes. So for example, a "gravity" algorithm pulls those items without recent votes down, and the oldest fall the farthest. A recent vote is a push against gravity which raises the items in the queue. The advantage is that this system will have a changing mix of new and old and give users incentive to click deeper into the site. Additionally, content which is still interesting can have a longer life on the front page before disappearing.
Thanks,
Pligglet |
I have changed mine so that when someone votes or comments on a story (in fact anytime a story is changed in anyway) it gets pushed to the top. This is great for busy sites as the top stories are always changing an old stories can be pushed to the top if someone votes or comments on them.
It doesn't just move it up the table by one it moves it directly to the top.
Sometimes it's not so good as you don't want a story that is year old on the front page, however, if someone is talking about it then why not?
To do it follow these simple steps:
Open index.php
Go to (around line 35):
Code:
if(!isset($_REQUEST['search'])){$search->orderBy = "link_published_date DESC";}
and change to:
Code:
if(!isset($_REQUEST['search'])){$search->orderBy = "link_modified DESC";}
Done!
To try it out go to
Linka / Published Links and vote on an older story and you will see it jump to the front page (you would have to register on the site though)