Is there a way to force all thumbnail URLs to be absolute and not relative? Not sure which file/template to change to do this. (I realize it is probably a hack).
I want it to be
src="http://www.noizemag.com/photos/albums/2010_Events/MRNY_BBCM/thumb_mrny_bbcm2010_07_5949.jpg"
instead of
src = "albums/2010_Events/MRNY_BBCM/thumb_mrny_bbcm2010_07_5949.jpg"
Open include/functions.inc.php, find
$pic_url = get_pic_url($row, 'thumb');
and replace with
$pic_url = $CONFIG['ecards_more_pic_target'].get_pic_url($row, 'thumb');
Thank you! Worked perfectly. This also fixes the Facebook problem of not embedding photo thumbnails when linking to a Coppermine album from Facebook.
Please mark your thread as solved: http://forum.coppermine-gallery.net/index.php/topic,55415.msg270631.html#msg270631