Hi
Install the plugin called “thickbox“
and hack the JJ carousel plugin file
jj_ngg_jquery_carousel.php
Around line 385 Ive set the alttext and title of the link and image to the alttext and description in next gen
//JJA readded next two lines to ignore the clever alt checking above
$image_alt = trim($image->alttext);
$image_alt = "alt=\"" . esc_attr($image_alt) . "\" ";
$image_description = trim($image->description);
if($image_description != '')
{
$image_description = "title=\"" . esc_attr($image_description) . "\" ";
}
else
{
$image_description = '';
}
Then in line 425 – ish
ive commented out the old output variable and amended to add the thickbox class and alttext and title etc
//$output .= "<img src=\"" . $image->imageURL . "\" " . $image_description . $width_d . $height_d . " border=\"0\" />";
//JJA mod below to display thumb and add thickbox
$output .= "<a class=\"thickbox\" ". $image_description. "rel=\"featured\" href=\"" . $image->imageURL . "\"><img src=\"" . $image->thumbURL . "\" " . $image_description . $image_alt. $width_d . $height_d . " border=\"0\" /></a>";
Oh and im using the nextgen thumb in my carousel <img src=\"" . $image->thumbURL
and linking that to the larger version
regards
Jon