Hi,
I'm trying out flash gallery module and think it's very nice (simpleviewer has also very nice plugins) .
I'm now trying to hack it a bit in order to achieve the following:
When you click on an image, at the bottom you have a 'download' to open the original image (plain html) while I'd like that link to open a thickbox 'page' (think of cck+image+thickbox tutorial) showing the original image, an additional image (I've added a second image field through CCK to the image content type) and a text (which is the body of the node).
The code which create that link is in flash_gallery.module file and here is the line:
$caption[] = '<u>'. l(t('download'), file_create_url($images['_original'])) .'</u>';
I' trying with like this below for thickboxed images:
return '<a href="'. check_url(file_create_url($path)) .'" class="thickbox img-'. $namespace .'" rel="cartella_colore">
<img src="'. $imagecache_path .'" alt="'. check_plain($alt) .'" class="thickbox" title="'. check_plain($title) .'" '. $attributes .' /></a>';
but howto add text field to thickbox output?
thanks for your help