Scenario:
"I want to make search results be random in order so that the same search query will bring up results in a different order."
Solution:
This requires a small core hack to BLOG.php.
Original forum thread (thanks, xiffy!):
http://forum.nucleuscms.org/viewtopic.php?t=9416
Method:
$query .= ' ORDER BY score DESC';
$query .= ' ORDER BY RAND()';
![]()
Total votes: 8 - Rating: 8.25