Hey,
1) we released an update yeserday which fixes the gallery bug - you can download it at themeforest. Just replace the old files with the new ones.
2) To remove the mini thumbs in the lightbox (not a bug but a feature) open up custom.js and replace:
jQuery($elements).prettyPhoto({
"theme": theme_selected /* light_rounded / dark_rounded / light_square / dark_square */ });
with:
jQuery($elements).prettyPhoto({
"theme": theme_selected, /* light_rounded / dark_rounded / light_square / dark_square */
overlay_gallery: false /* If set to true, a gallery will overlay the fullscreen image on mouse over */
});
3) To remove the featured image link open up single.php and replace:
$big_prev_image = kriesi_post_thumb($post->ID, array('size'=> array('L'),
'wh' => $k_option['custom']['imgSize']['L'],
'display_link' => $prev_image_link,
'linkurl' => array ('XL','_preview_big')
));
with:
$big_prev_image = kriesi_post_thumb($post->ID, array('size'=> array('L'),
'wh' => $k_option['custom']['imgSize']['L'],
'display_link' => none,
'linkurl' => none
));