Sadly the support isn’t very good but i fixed it by myself.
* Some PHP basic skills are needed *
1. Open “theme-widget.php”
2. Search for ” /* Players */ ” in file
3. Find line ” $players_posts = get_posts($args); “
4. Add after ” if($players_posts){ “
4.1 ” shuffle($players_posts); ” //Array with search results is shuffled to a random order
(if needed)
4.2 ” $array = array_slice($players_posts, 0, 5); ” //slice array to a specific size (0 is starting index, 5 is ending index of array)
cheers