The idea.
Every 10 minutes (or whatever interval you choose) a new thumb is added to the site. Causing us to use 144 thumbs per day.
The clicks are tallied on all the thumbs, and the thumbs are reorganised based upon their popularity.
If we only use 35 spots per daily section, this means we will discard 144-35=109 thumbs per day and keep only the best 35.
This forces our site to have better quaility content. And lowers our need to maintain quality control over our layout.
This in turn increases productivity and attractiveness of our sites.
Here's the general strategy.
We split the site up into Hall of Fame at the top, then todays best, then yesterday and day before. We then cycle the thumbs into the site.
We set each line of your hall of fame to display 1 day of best thumbs..and dont use the noclicks stuff.
IE:
Code: Select all
.......
1 row: hall of fame 4 days old
1 row: hall of fame 5 days old
1 row: hall of fame 6 days old
1 row: hall of fame 7 days old
1 row: hall of fame 8 days old
......
1 new but hidden thumb inside html comments.
......
1 row: stage1 thumbs
4 rows: age1 thumbs.
......
5 rows age2 thumbs
.......
5 rows age3 thumbs.
Your site then gets the best of all worlds.
as for actual macros...
Code: Select all
<html>
<head>
<!--
{{prodbooster}}
{{setquery-new-" periodsshown>-1 order by periodsshown,if(used,1,0),refreshdelay DESC,rand() "}}
{{setquery-stage1-" periodsshown>0 order by clickperiods "}}
{{setquery-age1-" periodsshown>0 order by periodsshown,(clicks/clickperiods) desc "}}
{{setquery-age2-" periodsshown>1 order by periodsshown,(clicks/clickperiods) desc "}}
{{setquery-age3-" periodsshown>2 order by periodsshown,(clicks/clickperiods) desc "}}
{{setquery-best1-" periodsshown>3 order by periodsshown,(clicks/clickperiods) desc "}}
{{setquery-best2-" periodsshown>4 order by periodsshown,(clicks/clickperiods) desc "}}
{{setquery-best3-" periodsshown>5 order by periodsshown,(clicks/clickperiods) desc "}}
{{setquery-best4-" periodsshown>6 order by periodsshown,(clicks/clickperiods) desc "}}
{{setquery-best5-" periodsshown>7 order by periodsshown,(clicks/clickperiods) desc "}}
-->
{{include-rollovers.tmpl}}
</head>
<body><center>
[Your site header img here]<br>
<table>
{{all-thumbs-1-7-query-best1}}
{{all-thumbs-1-7-query-best2}}
{{all-thumbs-1-7-query-best3}}
{{all-thumbs-1-7-query-best4}}
{{all-thumbs-1-7-query-best5}}
</table>
<br>
[banner here]
<br>
<!-- {{all-thumb-1-query-new}} Hidden Thumb for new stuff -->
<table>
{{all-thumbs-1-7-query-stage1}}
{{all-thumbs-4-7-query-age1}}
</table>
<br>
[banner here]
<br>
<table>
{{all-thumbs-5-7-query-age2}}
</table>
<br>
[banner here]
<br>
<table>
{{all-thumbs-5-7-query-age3}}
</table>
<br>
[Toplist here ]
</center>
</body>
</html>