Either method will work equally well and will give you the same end result.
You can edit your gallery's 'config.xml' file in a plain text editor and add configuration options as attributes to the opening <juiceboxgallery> tag (as documented here) or open, edit and save your gallery using JuiceboxBuilder-Pro.

You can disable the Splash Page by setting showSplashPage="NEVER".
Alternatively, you could force Juicebox to display your gallery in Large Screen Mode on all devices and in all browsers by setting screenMode="LARGE".

4,628

(2 replies, posted in Juicebox-Pro Support)

When using the Lightroom plugin, thumbnails are created with maximum bounds of 128px x 128px. The thumbnails themselves are not cropped. The larger of the two sides will be 128px and the other side will be scaled appropriately in order to maintain the correct aspect ratio of the image.
The problem occurs when the thumbnails are displayed in the gallery as Juicebox crops rather than scales them to fit the thumbWidth and thumbHeight values (and this will be more noticeable if you set values less than the default values of 85px x 85px).
A possible workaround would be to create your thumbnail images in JuiceboxBuilder-Pro and substitute the 'thumbs' folder in your Lightroom-generated gallery with the 'thumbs' folder from JuiceboxBuilder-Pro.

4,629

(2 replies, posted in Juicebox-Pro Support)

This could be due to a permissions issue.
Ask your intern to copy the files onto her computer's desktop and to try opening the gallery from there.
Once the gallery has been edited, the files can be copied back onto the flash drive.

But now it's always getting previous gallery. I mean when you click A, B and C in sequence, it's showing me gallery of A, A and B. Just the first one is true.

This is due to a bug that was present in Juicebox v1.3.1 but which has now been fixed in Juicebox v1.3.2.
Please upgrade your galleries to Juicebox-Pro v1.3.2 and this should solve the problem.
For instructions on how to get the latest version and how to upgrade existing galleries, please see the Upgrading Juicebox page.

4,631

(6 replies, posted in Juicebox-Lite Support)

1. Is there a showThumbs config to hide it entirely on LSM?

To initially hide the thumbnails in Large Screen Mode, set showThumbsOnLoad="FALSE".
To hide the 'Toggle Thumbnails' button (to prevent users from toggling the thumbnails on and off) set showThumbsButton="FALSE".

2. Is there a method like getImageInfo(index) to get the thumbnail object (and returning its attributes, which probably is jus the imageURL)?

If you want to get the thumbURL of the image currently being displayed, you can use the Juicebox-Pro API methods getimageIndex() and getImageInfo() in conjuction with the onImageChange() event. You could then use JavaScript to determine more information about the thumbnail image, such as its dimensions.
For example:

<!--START JUICEBOX EMBED-->
<script src="jbcore/juicebox.js"></script>
<script>
    jb = new juicebox({
        containerId : 'juicebox-container'
    });
    jb.onImageChange = function(e) {
        var index = jb.getImageIndex();
        var info = jb.getImageInfo(index);
        var thumb = info.thumbURL;
        
        var img = new Image();
        img.src = thumb;
        var w = img.width;
        var h = img.height;
        alert("Current thumbnail dimensions: " + w + "px x " + h + "px");
    }
</script>
<div id="juicebox-container"></div>
<!--END JUICEBOX EMBED-->

4,632

(1 replies, posted in Juicebox-Pro Support)

Your gallery uses Juicebox-Pro v1.1.1 which had a bug affecting a two-image gallery with enableLooping="TRUE" (such as yours). This bug was fixed in v1.2.0 so upgrading your gallery to the latest version of Juicebox-Pro (v1.3.2) should solve your problem.
For instructions on how to get the latest version and how to upgrade existing galleries, please see the Upgrading Juicebox page.

4,633

(6 replies, posted in Juicebox-Lite Support)

Do you know if it is possible to go directly to the detail page in LSM, instead of starting with the Thumbnails page?

The thumbnail page is displayed in Small Screen Mode only (and not in Large Screen Mode).
You can initially hide the thumbnail page in Small Screen Mode by setting showSmallThumbsOnLoad="FALSE".
You can also prevent users from accessing the thumbnail page by setting showSmallThumbsButton="FALSE".

You can force a particular screen mode to be used on all devices and in all browsers via the screenMode configuration option.

Also, you can disable the Splash Page by setting showSplashPage="NEVER".

Hopefully, with a combination of the above options, you will be able to have your gallery function as required.

For reference, a full list of configuration options can be found here.
For more information about screen modes, please see here.

If you have many galleries uploaded to your web server, you can have them all share a single instance of the 'jbcore' folder by following the instructions here.
When a new version of Juicebox-Pro is released, you need only replace a single folder on your web server to upgrade all your galleries at once.

If you have made any modifications within the 'jbcore' folder (for example to the 'theme.css' file), then these modifications will need to be applied to the new version of the file but since Juicebox-Pro was released, we have added many configuration options (in v1.2.0 and v1.3.0) which can now be set in the gallery's XML file (such as control over shadows and the gallery font) which were previously only achievable by modifying the 'theme.css' file.

4,635

(21 replies, posted in Juicebox-Pro Support)

Add SEO Content is not a configuration option that can be added to a gallery's XML file.
It is a feature only of JuiceboxBuilder-Pro and the SEO code is generated at the time the gallery is created (not when the gallery is displayed).
You would need to manually embed your Juicebox-Pro gallery in your WordPress post (using the baseUrl method of embedding) and copy and paste the SEO content (generated by JuiceboxBuilder-Pro) along with the embedding code into the body of your WordPress post (ensuring that the method of entry is 'Text' rather than 'Visual).

4,636

(9 replies, posted in Juicebox-Pro Support)

This bug has now been fixed in v1.3.2. Please see the Version History for a full list of changes and the Upgrading Juicebox page for details on how to get the latest version.

This bug has now been fixed in v1.3.2. Please see the Version History for a full list of changes and the Upgrading Juicebox page for details on how to get the latest version.

The issue with the semi-transparent overlay on Android devices has now been fixed in v1.3.2. Please see the Version History for a full list of changes and the Upgrading Juicebox page for details on how to get the latest version.

4,639

(4 replies, posted in Juicebox-Pro Support)

The bug I referred to in my first post in this thread has now been fixed in v1.3.2. Please see the Version History for a full list of changes and the Upgrading Juicebox page for details on how to get the latest version.

4,640

(10 replies, posted in Juicebox-Pro Support)

This bug has now been fixed in v1.3.2. Please see the Version History for a full list of changes and the Upgrading Juicebox page for details on how to get the latest version.

The expanding multiple galleries bug has now been fixed in v1.3.2. Please see the Version History for a full list of changes and the Upgrading Juicebox page for details on how to get the latest version.

4,642

(7 replies, posted in Juicebox-Pro Support)

The issue with the semi-transparent overlay on Android devices has now been fixed in v1.3.2. Please see the Version History for a full list of changes and the Upgrading Juicebox page for details on how to get the latest version.

4,643

(3 replies, posted in Juicebox-Pro Support)

This bug has now been fixed in v1.3.2. Please see the Version History for a full list of changes and the Upgrading Juicebox page for details on how to get the latest version.

4,644

(3 replies, posted in Juicebox-Pro Support)

I see the difference in height now. Thank you.
I have notified the developers of this, too.

4,645

(2 replies, posted in Juicebox-Pro Support)

In order to install a new version of JuiceboxBuilder-Pro, you must first uninstall any previous version via the Control Panel.
Also, please see the Installation Issues section of the JuiceboxBuilder User Guide which may help.
If you continue to experience difficulties, please let me know how far you get into the installation process and what errors messages (if any) are displayed.

4,646

(6 replies, posted in Juicebox-Lite Support)

There is no method to dynamically add images to a gallery after it has initially been loaded.
Each time you add more images to your gallery, you would need to reload the gallery (using the standard JavaScript embedding code). On reloading the gallery, you could use the firstImageIndex configuration option to restart your gallery at an appropriate image.

4,647

(3 replies, posted in Juicebox-Pro Support)

If you have multiple controls enabled (in my case: thumbnails, open in new window, fotomoto, twitter, google plus, facebook, tumblr, pinterest) and the new Home icon enabled, on mobile device, the controls overlap the home icon so you can't access it anymore

Thank you for reporting.
I have notified the developers.

(they're not the same height either)

Do you have a sample gallery that I can take a look at which shows this? Also, what device(s) and browser(s) do you see this in? (In my own test gallery, the icons are the same height as each other.) Thank you.

4,648

(3 replies, posted in Juicebox-Pro Support)

Can you confirm?

Yes. This is a known bug which has been addressed and will be fixed in the next version of Juicebox-Pro.
Thank you for reporting.

4,649

(15 replies, posted in Juicebox-Pro Support)

When the 'Add SEO Content' checkbox is selected (in JuiceboxBuilder-Pro's 'Customize -> Sharing' section), the SEO code generated already includes 'alt' attributes in the <img> tags, populated by the image's caption.

4,650

(2 replies, posted in Juicebox-Pro Support)

If you are simply moving your Juicebox-Pro galleries from Domain1 to Domain 2, then there is no need to do anything other than delete all your Juicebox-Pro galleries from Domain1.
A Juicebox-Pro Single-Site license is not tied to a specific domain. As long as all your Juicebox-Pro galleries are uploaded to only one domain at a time, that is fine.

If you wish to have Juicebox-Pro galleries on both Domain1 and Domain2, then please see this FAQ:
Can I upgrade from a single site license to a multi-site license at a later time?