coppermine-gallery.com/forum

Support => cpg1.5.x Support => cpg1.5 themes (visuals) => Topic started by: Forgottenmem on March 17, 2011, 01:27:03 PM

Title: Remove Dates
Post by: Forgottenmem on March 17, 2011, 01:27:03 PM
I want to remove the dates, from two locations.

(https://coppermine-gallery.com/forum/proxy.php?request=http%3A%2F%2Fthumbnails41.imagebam.com%2F12392%2Fac28a9123910495.jpg&hash=9948ac7b9a1c0786c78b3ab776b6d1fab8aa0c5f) (http://www.imagebam.com/image/ac28a9123910495) (https://coppermine-gallery.com/forum/proxy.php?request=http%3A%2F%2Fthumbnails36.imagebam.com%2F12392%2F0c7544123910497.jpg&hash=6cf6a04caa1e483214a063ddff93d5920f34865a) (http://www.imagebam.com/image/0c7544123910497)
Title: Re: Remove Dates
Post by: Forgottenmem on March 17, 2011, 01:35:28 PM
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
Title: Re: Remove Dates
Post by: ΑndrĂ© on March 17, 2011, 01:53:21 PM
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 (http://forum.coppermine-gallery.net/index.php/topic,70498.0.html) thread.
Title: Re: Remove Dates
Post by: Forgottenmem on March 17, 2011, 02:26:36 PM
Thank you. ΑndrĂ©.