forum.coppermine-gallery.net

Support => cpg1.5.x Support => cpg1.5 themes (visuals) => Topic started by: altenae on October 23, 2011, 01:00:32 am

Title: Date underneath the thumbnails in Albumview
Post by: altenae on October 23, 2011, 01:00:32 am
Hello,

I have a question about the coppermine version 1.5.16

In the last additions thumbnails the upload date is underneath the thumbnails.
Howerver when you go into an album the date is not underneath the thumbnails.

Is there a way to make the upload date visible underneath the thumbnails in the albumview.

Thank you,

Edward
Title: Re: Date underneath the thumbnails in Albumview
Post by: Αndré on October 24, 2011, 02:26:19 pm
Open include/functions.inc.php, find
Code: [Select]
        // Set picture caption
        if ($set_caption) {
            if ($CONFIG['display_thumbnail_rating'] == 1) {
                build_caption($rowset, array('pic_rating'));
            } else {
                build_caption($rowset);
            }
        }
and replace with
Code: [Select]
        // Set picture caption
        if ($set_caption) {
            if ($CONFIG['display_thumbnail_rating'] == 1) {
                build_caption($rowset, array('pic_rating', 'ctime'));
            } else {
                build_caption($rowset, array('ctime'));
            }
        }
Title: Re: Date underneath the thumbnails in Albumview
Post by: altenae on October 24, 2011, 06:45:08 pm
Yes......

Thank you.

Greetings,

Edward
Title: Re: Date underneath the thumbnails in Albumview
Post by: altenae on October 24, 2011, 06:47:30 pm
Sorry for asking:

Are you interested ?

http://forum.coppermine-gallery.net/index.php/topic,73773.0.html
Title: Re: Date underneath the thumbnails in Albumview
Post by: Αndré on October 25, 2011, 10:24:59 am
Please
tag your answer as "solved" by clicking on the "Topic Solved" button on the bar at the left hand side at the bottom of your thread.