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

News:

cpg1.5.48 Security release - upgrade mandatory!
The Coppermine development team is releasing a security update for Coppermine in order to counter a recently discovered vulnerability. It is important that all users who run version cpg1.5.46 or older update to this latest version as soon as possible.
[more]

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