Quote:
Originally Posted by nicolerork
When displaying the most recently uploaded images in the user's profile, is there anyway to change the default number to 3 instead of 5?
|
would be interested in a solution too
Think this is a sql-query defined during installatin?
PHP Code:
</tr>]]></template>
</templates>
<plugins>
<plugin active="1" executionorder="5">
<title>vbimghost last 5 images - profile</title>
<hookname>member_complete</hookname>
<phpcode><![CDATA[$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
");
Quote:
Originally Posted by nicolerork
Also, how can I make the default uploading permission public instead of private? Any help is appreciated. Thanks.
|
VB image host options/Default image view privacy