I just upgraded to the newest version of coppermine and there is something I can't quite figure out. On my last comments page
http://www.slimtainment.com/coppermine/thumbnails.php?album=lastcom&cat=0
how do I just have the date and comment appear? I can't find where to modify this anywhere
http://www.slimtainment.com/ is down for me.
strange. its working for me.
DNS lookup for the domain fails for me, could you post an IP address instead?
I was able to access the site. I found the IP address in whois but the site is on a shared server.
k, might be a DNS replication issue for me then - sorry, I'm out of this thread obviously :-\.
(IP: 72.29.78.93 - you can stick it in your hosts file)
You can disable
Display number of views below the thumbnail
Display number of comments below the thumbnail
globally in config, if you need specific settings for specific albums you'll need code changes.
I dont mind the view and comment. I want to remove the name of the comment poster and be able to format the way it looks a little different. I managed to do this in 1.3.2 but dont remember how
Ah, then open your include/functions.inc.php, look for
if ($row['author_id']) {
$caption .= '<span class="thumb_caption"><a href ="profile.php?uid='.$row['author_id'].'">'.$row['msg_author'].'</a>: '.$msg_body.'</span>';
} else {
$caption .= '<span class="thumb_caption">'.$row['msg_author'].': '.$msg_body.'</span>';
}
and kill it
/*
if ($row['author_id']) {
$caption .= '<span class="thumb_caption"><a href ="profile.php?uid='.$row['author_id'].'">'.$row['msg_author'].'</a>: '.$msg_body.'</span>';
} else {
$caption .= '<span class="thumb_caption">'.$row['msg_author'].': '.$msg_body.'</span>';
}
*/
awesome checking it out now. this is exactly what I was looking for, I just couldn't find the code. I think in the old version I used it was in the language file, but I could be wrong. I will update this to solved if it works