No current setting requires a file edit.
Open Sources/Downloads2.php
Find the Downloads_MainPageBlock function
Around line 6468 find "LIMIT 4" and change the number 4 of how many pictures you want to show
In that same function $maxrowlevel = 4; controls how many items per row.
yep that works for me thanks very much,
In case someone else wants to do it you have to increase the 'catbg' size too
see below for my changes - I have changed 4 to 8
$maxrowlevel = 8;
echo '<table class="table_list">
<thead class="header">
<tr class="catbg">
<td align="center" colspan="8" class="catbg"><span class="left"></span>', $title, '</td>
</tr>
</thead>
';
//Check what type it is
$query = ' ';
$query_type2 = '';
$query_type = 'p.ID_FILE';
switch($type)
{
case 'recent':
$query_type = 'p.ID_FILE';
break;
case 'viewed':
$query_type = 'p.views';
break;
case 'mostcomments':
$query_type = 'p.commenttotal';
break;
case 'mostdownloaded':
$query_type = 'p.totaldownloads';
break;
case 'toprated':
$query_type = 'ratingaverage';
$query_type2 = ', (p.rating / p.totalratings ) AS ratingaverage ';
break;
}
$query = "SELECT
p.ID_FILE, p.commenttotal, p.totalratings, p.rating, p.filesize, p.views, p.title,
p.ID_MEMBER, m.real_name, p.date, p.description, f.ID_PICTURE, f.thumbfilename,
mg.online_color, p.totaldownloads $query_type2
FROM {db_prefix}down_file as p
LEFT JOIN {db_prefix}members AS m ON (m.ID_MEMBER = p.ID_MEMBER)
LEFT JOIN {db_prefix}membergroups AS mg ON (m.ID_GROUP = mg.ID_GROUP)
LEFT JOIN {db_prefix}down_file_pic AS f ON (f.ID_PICTURE = p.ID_PICTURE)
LEFT JOIN {db_prefix}down_catperm AS c ON (c.ID_GROUP IN ($groupsdata) AND c.ID_CAT = p.ID_CAT)
WHERE p.approved = 1 AND (c.view IS NULL || c.view =1) GROUP by p.ID_FILE ORDER BY $query_type DESC LIMIT 8";