
Thank you so much! Perfect, it works now! I would have never even noticed that there was an Include folder, and all the millions PHP files that one can open and do stuff in.
So, to give a complete answer from a newbie for future newbies:
If you want to totally get rid of the little window with file info (file name, size, date uploaded) that appears when tool tip (mouse) hovers over a thumbnail visible the Random pictures area or when opening a folder:
open the include folder
open the functions.inc.php
scroll down a little more than halfway and find this title:
**
* display_thumbnails()
*
* Generates data to display thumbnails of pictures in an album
inside that department search for this and erase it completely if you want to get rid of the window or erase only parameters you don't want displayed:
$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);
I did it and works perfectly. Thanks for the help!
And yes, remember to back up the php before cutting around! I forgot to do this yesterday with the English language php and my gallery stopped working due to my wrong edits in that list. Thanx god there is also British English in this world, so I could copy the php from British and paste it into English and it worked and I could save the day.