Last comments Question *Solved* Last comments Question *Solved*
 

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

Main Menu

Last comments Question *Solved*

Started by sizlintune, February 13, 2006, 03:43:15 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

sizlintune

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.brentnatzle.com
<b> a little bit about nothing</b>

Joachim Müller


sizlintune

http://www.brentnatzle.com
<b> a little bit about nothing</b>

Joachim Müller

DNS lookup for the domain fails for me, could you post an IP address instead?

Tranz

I was able to access the site. I found the IP address in whois but the site is on a shared server.

Joachim Müller

k, might be a DNS replication issue for me then - sorry, I'm out of this thread obviously :-\.

Nibbler

(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.

sizlintune

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
http://www.brentnatzle.com
<b> a little bit about nothing</b>

Nibbler

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>';
            }
*/


sizlintune

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
http://www.brentnatzle.com
<b> a little bit about nothing</b>