PhotoPlog

PhotoPlog (http://www.photoplog.com/forum/index.php)
-   "How Do I..." Questions (http://www.photoplog.com/forum/forumdisplay.php?f=7)
-   -   Thumbs on memberinfo (http://www.photoplog.com/forum/showthread.php?t=91)

xavierspl 02-24-2006 02:29 AM

I'm basically trying to do the same thing, with the same types of layout. (my PHP skills are limited)
I've already created the table and would like to show the last 3 images, can someone post the code needed to display these images on the VB memberinfo page?
Any help is appreciated!! :D

Morgan 02-24-2006 06:35 PM

For thumbs on memberinfo, edit the MEMBERINFO template:
Code:

$navbar
// add the following
$photoplog_memberinfo

That will show up to five random thumbs for the member.

If you want the three most recent images instead, go to:

vB ACP -> Plugin System -> Plugin Manager -> PhotoPlog Member Info Thumbs -> Edit and replace:
Code:

                        ORDER BY RAND()
                        LIMIT 5

With the following:
Code:

                        ORDER BY dateline DESC
                        LIMIT 3

The same sort of thing could be done to the PhotoPlog Forum Home Thumbs plugin.


All times are GMT. The time now is 05:20 AM.

Powered by vBulletin® Version 3.8.5
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.