I'm working on a site redesign and upgrade (Joomla 1.5 to 2.5) using the Infuse template. I really love what the RokIntroScroller module does, but for best results, I'm like the items within the scroller to appear in random order. I was wondering whether this was something that could be configured.
You can see the test site at
bernardtest.com
I figured it out.
I edited RokIntroScroller.php, in directory modules/mod_rokintroscroller/lib
After the following line:
$rows = $model->getItems();
I inserted this new line:
shuffle($rows);