Hi Vincent,
thank you for all your work!
Pretty new to ZP, I'd like to dare suggesting a code change for you next version. It took me some hacking to figure the theme is not checking all Colorbox settings.
When option "sizedimage" is set, your theme still loaded "fullimage".
So I went in the code and added in album.php ~line 54+
`
<?php if (getOption('use_colorbox_album')) {
switch(getOption('slideshow_colorbox_imagetype')) {
case 'fullimage':
$imagelink = html_encode($_zp_current_image->getFullImage());
break;
case 'sizedimage':
$imagelink = html_encode($_zp_current_image->getCustomImage(getOption("slideshow_width"), NULL, NULL, NULL, NULL, NULL, NULL));
break;
}
}
?>
<a>class="colorbox"<?php } ?> href="<?php echo $imagelink; ?>" title="<?php echo getBareImageTitle(); ?>"></a>
`
This will generate whatever sized image in the cache and Colorbox will use it.
Cheers