Remove Dates Remove Dates
 

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

Remove Dates

Started by Forgottenmem, March 17, 2011, 01:27:03 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.


Forgottenmem

I looked at the thread, but I'm unable to figure out what more I need to delete.

http://forum.coppermine-gallery.net/index.php/topic,70498.0.html

Αndré

If you want to remove the date from the lastup album, open include/functions.inc.php, find
        if ($set_caption) {
            build_caption($rowset, array('ctime'));
        }

        $rowset = CPGPluginAPI::filter('thumb_caption_lastup', $rowset);

and replace with
        if ($set_caption) {
            build_caption($rowset);
        }

        $rowset = CPGPluginAPI::filter('thumb_caption_lastup', $rowset);

twice.


How you can remove that data from the album info has already been answered in that thread.

Forgottenmem