Hey, I had the same problem, and have just solved it!
Orig:
<div class="pic"><?php echo $image->href_link ?></div>
Replace with:
<div class="pic"><img src="<?php echo $image->imageURL ?>" /></div>
@ heliocristovao – I think this is what you are looking for:
orig:
<div class="pic"><?php echo $image->href_link ?></div>
replace with:
<div class="pic"><a href="<?php echo "?album=3&gallery=". $image->galleryid ."&nggpage=". ceil($image->number/9) ?>">
<img src="<?php echo $image->imageURL ?>" /></a></div>
If you just would like to remove the link, just replace:
<div class="pic"><?php echo $image->href_link ?></div>
with:
<div class="pic"><img src="<?php echo $image->imageURL ?>" /></div>
I am facing the same problem…Anyone who know if it is possible to fix it by changing nggfunctions or imagebrowser?