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

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

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