Topic: WP-Juicebox Main Image Size

I am testing WP-Juicebox, it seems that the main image uses the original image.  For wordpress, there are three default image sizes that are automatically created whenever you upload an image: Thumbnail Size, Medium Size, and Large Size.  Would it be possible to use the Large Size instead of the original image size?

The reason that I ask is that I would like to upload full resolution images to the library and have Juicebox gallery display a web resized version. My full resolution images are about 30MB each, so they would take much too long to download if Juicebox is displaying css-scaled down versions of the original.

Re: WP-Juicebox Main Image Size

Try opening the 'wp-juicebox/config.php' file in a plain text editor and change line 56 from:

$image = wp_get_attachment_image_src($attachment->ID, 'full');

... to:

$image = wp_get_attachment_image_src($attachment->ID, 'large');

(The line number refers to WP-Juicebox v1.2.0.)

Re: WP-Juicebox Main Image Size

Worked perfectly, thanks!