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)
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
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.
Thank you. ΑndrĂ©.