How to remove the album discription? How to remove the album discription?
 

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

How to remove the album discription?

Started by british-babes, February 18, 2005, 10:39:57 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

british-babes

Hi,

Is it possible to remove the album discription on the front page? (eg.the 10 files, last one added on Feb 15, 2005, total views 524 txt which is shown by the album thumbnail)

Aditya Mooley

Open index.php

Comment or remove all the occurances of

$alb_list[$alb_idx]['album_info']


Remeber to take a backup of the file before changing it.
--- "Its Nice 2 BE Important but its more Important 2 Be NICE" ---
Follow Coppermine on Twitter

zoinks

I just ran into a similar customization snag: Wanted to remove "last one added" but keep number of files. Therefore flat-out removing "{ALB_INFOS}" in my template.php wasn't the solution. Based on other posts on this topic, I dug a bit and found the answer...

In "/yourcopperminefolder/lang/english.php" (or whatever language you're using) look for "$lang_list_albums = array". That's where you can comment out the "last added" wording, ie. change.... 'last_added' => ', last one added on %s', to 'last_added' => '',

Also, since I'm using this just for photos, I changed.... 'n_pictures' => '%s files', to 'n_pictures' => '%s photos',

Hope this helps anyone else looking to do the same!  ;D