PDA

View Full Version : Rollover on photos customization


Trideon
2nd of November 2005 (Wed), 09:15
Can someone please tell me how I would go about removing some information from the rollover info displayed when hovering over an image or thumbnail in the gallery. I am using the exhibit for a sculpture gallery, and have removed most references to camera info... just can't seem to find where the rollover is created so I can remove "ISO100 Inbuilt" from the information in the rollover. Any help would be appreciated! I guess I might just have to remove the info from the DB, but would rather just alter the code.

Trideon
2nd of November 2005 (Wed), 09:28
well, I found one workaround... but would still like input on this. I just edited the name of the "Inbuilt" lens to "". But now i will need to remove the 100 from ISO in every photo entry in order to hide the ISO100.

Trideon
2nd of November 2005 (Wed), 09:44
figured it out, my own question, finally found the lines to comment in each output file (ie. x_per_row.php)
right around line 32 to 49
//if ($all["ee_photo_exif_iso"]!="" AND $all["ee_photo_exif_iso"]!="0")
//{print " ISO" . $all["ee_photo_exif_iso"] . " ";}
//if ($all[5]!="" AND $all[5]!="0")
//{
//if ($all["ee_photo_shutter_unit"]=="1/100")
//{print "1/" . $all["ee_photo_exif_shutter"]/10;
//}
//if ($all["ee_photo_shutter_unit"]!="1/100")
//{print abs($all["ee_photo_exif_shutter"]);
//print "s";
//}
//}
//if ($all["ee_photo_exif_aperture"]!="" AND $all["ee_photo_exif_aperture"]!="0")
//{print " f/" . $all["ee_photo_exif_aperture"] . " ";}
//if ($all["ee_lens_displayname"]!="" AND $all["ee_lens_displayname"]!="0")
//{
//print stripslashes($all["ee_lens_displayname"]);
//}