What file that I must modified to add "Uploaded by" before the user name. It is displayed in thumbnails view. ??? The current setting display only uploader name below the thumbnail. I already try to edit the displayimaget.php but seems doesn't work. Hope you could help.
Thanks in advance.
Is your question by chance related to images fetched by cpmFetch?
No. I mean the thumbnails displayed at main page.
Attached here the Screen shot
Alright, I already figured it out. I edited the file functions.inc.php
and find this code
$caption .= ($row['owner_id'] && $row['owner_name']) ? '<span class="thumb_title"><a href ="profile.php?uid='.$row['owner_id'].'">'.$row['owner_name'].'</a></span>' : '';
and replace it with this
$caption .= ($row['owner_id'] && $row['owner_name']) ? '<span class="thumb_title">Uploaded by: <a href ="profile.php?uid='.$row['owner_id'].'">'.$row['owner_name'].'</a></span>' : '';
Please mark this topic as SOLVED.
Thank you. ;)