Hide file extension in thumbnail Alt tag information cpg1.3 Hide file extension in thumbnail Alt tag information cpg1.3
 

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

Hide file extension in thumbnail Alt tag information cpg1.3

Started by spa2036, January 03, 2006, 09:52:11 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

spa2036

HAPPY NEW YEAR to all of you.

I need to hide the filename extension in the ALT tag when you hover over a thumbnail.
I would also like to hide the additional information shown in this tag. I think next option will work:

file functions.inc.php
change this code:
                       $pic_title =$lang_display_thumbnails['filename'].$row['filename']."\n".
                                $lang_display_thumbnails['filesize'].($row['filesize'] >> 10).$lang_byte_units[1]."\n".
                                $lang_display_thumbnails['dimensions'].$row['pwidth']."x".$row['pheight']."\n".
                                $lang_display_thumbnails['date_added'].localised_date($row['ctime'], $album_date_fmt);


to next code:
                         $pic_title =$lang_display_thumbnails['filename'].$row['filename']//."\n".
//                                $lang_display_thumbnails['filesize'].($row['filesize'] >> 10).$lang_byte_units[1]."\n".
//                                $lang_display_thumbnails['dimensions'].$row['pwidth']."x".$row['pheight']."\n".
//                                $lang_display_thumbnails['date_added'].localised_date($row['ctime'], $album_date_fmt);
;


Please correct me if I am wrong. Unfortunately I can not find a way to hide the filename information.

Thanks in advance for your support.

Regards, Rob
Thanks for sharing this wonderful program

kegobeer

Do not send me a private message unless I ask for one.  Make your post public so everyone can benefit.

There are no stupid questions
But there are a LOT of inquisitive idiots

spa2036

The only thing I want to be displayed is the filename without extension.

Is this possible?
Thanks for sharing this wonderful program