
04-12-2007, 07:01 AM
|
|
|
Join Date: Mar 2006
Posts: 155
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by as7aab
Is it possible to view only 3 of the latest photos in the profile?
Thanks.
|
Edit vbimghost last 5 images - profile plugin, under Plugins & Products > Plugin Manager and at the top find
Quote:
$rec = $vbulletin->db->query_read("
SELECT imgid,imgfile,thumbname,imgwidth,imgheight,imgdate
FROM ".TABLE_PREFIX."vbimghost
WHERE userid='$userinfo[userid]' and imgprivate='0'
order by imgdate DESC
LIMIT 5
");
|
and replace with
Quote:
$rec = $vbulletin->db->query_read("
SELECT imgid,imgfile,thumbname,imgwidth,imgheight,imgdate
FROM ".TABLE_PREFIX."vbimghost
WHERE userid='$userinfo[userid]' and imgprivate='0'
order by imgdate DESC
LIMIT 3
");
|
Also update your Phrase Manager, find vbimghost_last5img and change the text from Last 5 images uploaded to Last 3 images uploaded
|