Hi there!
Could you post a direct link to the gallery?
If you know a bit of coding, please open the jwsigpro.php file and find the lines 324
if($download_link)
$html .= '<a href=\''.$mosConfig_live_site.$rootfolder.$_images_dir_.'/'.$images[$a].'\' target=\'_blank\'><b>'.htmlentities($labels[md5($mosConfig_absolute_path.$rootfolder.$_images_dir_.'/'.$images[$a])],ENT_QUOTES).'</b></a>';
else
$html .= '<b>'.htmlentities($labels[md5($mosConfig_absolute_path.$rootfolder.$_images_dir_.'/'.$images[$a])],ENT_QUOTES).'</b>';
and remove the htmlentinties function
if($download_link)
$html .= '<a href=\''.$mosConfig_live_site.$rootfolder.$_images_dir_.'/'.$images[$a].'\' target=\'_blank\'><b>'.$labels[md5($mosConfig_absolute_path.$rootfolder.$_images_dir_.'/'.$images[$a])].'</b></a>';
else
$html .= '<b>'.$labels[md5($mosConfig_absolute_path.$rootfolder.$_images_dir_.'/'.$images[$a])].'</b>';
Do the same with the line 353
$final_caption = htmlentities($labels[md5($mosConfig_absolute_path.$rootfolder.$_images_dir_.'/'.$images[$a])],ENT_QUOTES);
$final_caption = $labels[md5($mosConfig_absolute_path.$rootfolder.$_images_dir_.'/'.$images[$a])];
Thank you!