@captureme

It does sound similar but without a gallery URL from contactgeoff, there is little we can do to test.

5,527

(496 replies, posted in Juicebox-Pro Support)

@philby

Thank you for the suggestions. We will keep them in mind for future versions of WP-Juicebox.


@terranut
Thank you for your sugestions. Here are a few notes on a couple of your points.

- a fully configurable startup gallery, where tiled photos & text allows a person to chose which gallery to open up, like as seen here in this demo

Currently, the only automated way to create an index page listing multiple galleries with a thumbnail image for each gallery is to use svManager. It is a PHP web application for creating and editing Juicebox (and SimpleViewer, AutoViewer, PostcardViewer and TiltViewer) galleries. Rather than create galleries with svManager itself, you may choose to create galleries by another method (such as with JuiceboxBuilder-Pro) and import the galleries to be managed by svManager. The automated index page would look something like this demo.
A method of creating multiple galleries in a single pass is to use jAlbum and the Juicebox Skin. You could drag-and-drop an entire folder structure into jAlbum's main window and, on clicking 'Make Album', a Juicebox gallery will be created for each folder/subfolder in your input structure. All the galleries would be linked together via a JavaScript navigation tree (though there would be no thumbnail images to represent each gallery).

- i know the i can go true fullscreen, but not in IE9+, id like to see that support in the future

This is down to browser support of the Fullscreen API and is not controlled by Juicebox itself.
Currently IE9 does not support the Fullscreen API. For a list of browsers that do support the Fullscreen API, please see this web page.

5,528

(3 replies, posted in Juicebox-Pro Support)

Try defining your @font-face in the gallery's 'index.html' page like this:

@font-face {
    font-family: Delicious-SmallCaps;
    src: url('Delicious-SmallCaps.otf');
    font-weight: 400;
}

... and use something like the following as your Gallery Title

<span style="font-family: Delicious-SmallCaps;">Juicebox Lite Gallery</span>

... replacing 'Delicious-SmallCaps' with the name of your own chosen font.

Alternatively, you could add the following to your gallery's 'index.html' page CSS:

.jb-area-large-mode-title  {
    font-family: Delicious-SmallCaps;
}

... and then just use plain text for your Gallery Title.

5,529

(3 replies, posted in Juicebox-Pro Support)

Thank you for testing and reporting back.
I will ensure that this fix is included into the next version of WP-Juicebox.

Is this an issue with the Safari browser or is there a workaround?

If it was an issue with Mobile Safari, I would expect to see the issue on both the iPad and the iPhone but you say that it happens on the iPad but not on the iPhone.

Please post the URL to your gallery so that I can take a look.

5,531

(3 replies, posted in Juicebox-Pro Support)

WP-Juicebox defines the path to the configUrl as an absolute URL.
As such, it does not rely on the 'juicebox.js' file to build up an absolute URL from a relative one.
Also, the absolute URL used to define the path to the configUrl within WP-Juicebox does not hardcode the 'http://' part.
It is constructed from the following code using the WordPress method wp_upload_dir(). If your WordPress installation is hosted on a secure server, then I would expect the method to return a URL starting with 'https://'.

$upload_dir = wp_upload_dir();
$gallery_filename = $upload_dir['baseurl'] . '/juicebox/' . $gallery_id . '.xml';

However, this does not seem to be the case. (I do not have a secure server on which to test.)
Try inserting the following code on line 1083 of 'wp-juicebox.js'.

if (strpos($gallery_filename, 'http') === 0 && is_ssl()) {
    $gallery_filename = str_replace('http://', 'https://', $gallery_filename);
}

Hopefully, this will resolve the issue and the fix can be included in the next version of WP-Juicebox.
Thank you for reporting.

5,532

(1 replies, posted in Juicebox-Pro Support)

I believe you are correct in guessing that the selected thumbnail's frame width is set within the 'juicebox.js' file. As the JavaScript file is packed and obfuscated, it is not possible to modify the file and change this value.
However, the ability to set this parameter (the selected thumbnail's frame width) via a configuration option (rather than via modification of CSS or JavaScript) is on the roadmap and will hopefully be included in a future version (though I do not know when this might be).

5,533

(3 replies, posted in Juicebox-Pro Support)

Thank you for reporting.
This is a known bug which has been addressed and will be fixed in the next version.
In the meantime, workarounds are either to set firstImageIndex="1" or (as you have discovered) enableLooping="FALSE".

5,534

(2 replies, posted in Juicebox-Pro Support)

Install and use JuiceboxBuilder-Pro (which comes with Juicebox-Pro).
You can then enter unique Titles and Captions for each image in the text fields on the 'Images' tab.
You can also use the 'Images -> Titles' and 'Images -> Captions' options (from the drop-down menu at the top) to globally populate the Title and Caption text fields with information such as file names or IPTC titles and captions.

5,535

(1 replies, posted in Juicebox-Pro Support)

It is not possible to change the position of the buttons on the Button Bar. The order of the buttons is determined by code within the 'juicebox.js' JavaScript file which is packed and obfuscated and cannot be modified.

Some of the photos have the Filename displaying under the photo in the location where the Title Text displays.
In the NextGen gallery where the thumbnails display, there is no data in the  Alt & Title Text box!

Currently, WP-Juicebox defaults to using the image filename as the title if the NextGEN 'Alt & Title Text' field is empty.
This is a bug which will be fixed in the next version but until it is released, you can fix it by opening the 'wp-juicebox.php' file in a plain text editor and changing line 668 from:

$title = $attachment->filename;

... to:

$title = '';

Once you have made the change, simply 'Edit' and 'Update' the post containing the gallery or edit the gallery itself (via the 'Manage Galleries' page).

I am not a techie, but I asked my husband what he thought - he is a techie.  He showed me how I could edit the generated HTML file.  I'm wondering if it would be possible to provide a simple editor of the HTML file so fix these?

If you want to delete the titles manually, you will need to open the gallery's XML file in a plain text editor (such as Notepad++).
The XML file will be located in the 'wp-content/uploads/juicebox/' directory and will be named 'gallery_id.xml' (where 'gallery_id' is the numeric Gallery Id of the gallery in question.
Once the file has been opened in the editor, just delete the contents of the <title> tags, save and re-upload the file to its original location.

5,537

(2 replies, posted in Juicebox-Pro Support)

The thumb dots (unselected, selected and hover) are all part of the 'assets.png' file in the 'jbcore/classic/img' folder.
You can edit this file in an image manipulation program (such as Photoshop) to change the color of the dots.

Try changing:

<div id="fotogalerie_triathlon_erbach_2011"></div>

... to:

<div id="fotogalerie_triathlon_erbach_2011" style="float: left;"></div>

too upload my Album again to the new web space i thought easy, i can find it on my computer and juicebox pro can upload it again !

Neither Juicebox-Pro nor JuiceboxBuilder-Pro have any built-in FTP capability so you cannot upload a gallery using either.

DIDNT WORK, juicebox couldnt find the correct config.xml file ?

In order to open an existing gallery in JuiceboxBuilder-Pro, the gallery's XML file must be named 'config.xml' (or 'gallery.xml' if converting a SimpleViewer gallery) and must be located directly in the gallery folder (not in a subfolder).

So i then downloaded the whole Album folder from the free web space to my computer, i then uploaded it to my new paid for Web Space, where i can happily say it still works fine.  www.equinutz.net

Your entire web site seems to be an album (a collection of individual galleries) created by jAlbum and the SimpleViewer Skin. If you are trying to open one of these SimpleViewer galleries in JuiceboxBuilder-Pro (to convert it to a Juicbeox gallery), you will need to open the gallery folder directly (somewhere within your album's output folder structure) rather than the root output folder itself.

5,540

(2 replies, posted in Juicebox-Lite Support)

Please post feature requests in this thread. It keeps them all together and ensures that they are not overlooked.
Thank you.

5,541

(496 replies, posted in Juicebox-Pro Support)

@daniel silveira

For an automated solution to multiple-gallery support, you might like to take a look at either:

(1) svManager
This is a separate product (a PHP web application) which allows you to create and manage galleries online through a web browser interface.
You can create Juicebox galleries with svManager itself or you can create Juicebox galleries by another method (such as JuiceboxBuilder-Pro), upload them to your web server and import them into your svManager installation.
svManager creates an index page of all listed galleries comprising thumbnails which link to the individual galleries.
Here is a sample svManager index page.
You can try svManager via the online demo here.

... or:

(2) Juicebox Skin for jAlbum
jAlbum is a desktop application which allows you to create a multiple-gallery album in a single action.
When using the Juicebox skin, you can drag and drop a complete folder structure into jAlbum's main window and click 'Make Album'.
The resulting album will have a separate Juicebox gallery for each and every folder/subfolder in your input structure and all the galleries will be linked together via a JavaScript navigation tree.
Here is a sample album created by jAlbum and the Juicebox Skin.

For a manual solution to multiple-gallery support, please see the Embedding Multiple Galleries section of the 'Juicbebox - Embedding Guide' which covers 'Multiple Galleries on Separate HTML Pages' and 'Multiple Galleries on One HTML Page'.

5,542

(5 replies, posted in Juicebox-Pro Support)

hmm what if I'm not embedding the galleries?  or is this embedding code inside an xml file?

All galleries must be embedded in an HTML page in order to be displayed.
If you create a gallery with JuiceboxBuilder-Pro, the gallery is automatically embedded in the HTML index page (whose default name is 'index.html' but can be changed on the 'Publish' tab).
If you open the gallery's HTML index page in a plain text editor, you will see the embedding code there.
For reference, the Juicebox Embedding Guide can be found here.

5,543

(5 replies, posted in Juicebox-Pro Support)

Initial testing by Steven Spiers from the Simpleviewer forum indicated that Juicebox galleries would show any changes with a simple click of the Refresh button.

This still seems to hold true with Chrome 20 on my PC but different browsers will cache files differently. Hitting F5 is enough to reload the page afresh (from the web server rather than the browser's cache) in Chrome 20 (on my PC) whereas CTRL + F5 is required in Firefox 14.0.1 and a complete clearing of the browser cache may be required in other browsers.

Try defining your gallery's XML file with a unique identifier (e.g. the current time which will be different each time the browser loads the page) using the configUrl option in your gallery's embedding code.

<!--START JUICEBOX EMBED-->
<script src="jbcore/juicebox.js"></script>
<script>
    new juicebox({
        containerId : 'juicebox-container',
        configUrl : 'config.xml?nocache=' + new Date().getTime()
    });
</script>
<div id="juicebox-container"></div>
<!--END JUICEBOX EMBED-->

5,544

(2 replies, posted in Juicebox-Pro Support)

Increase the 'z-index' values of your menu elements in your 'style.css' file.
Open the file in a plain text editor, search for 'z-index' (there are four instances) and change the three '200' values to '2000' and the single '500' value to '5000'. That should ensure that the drop-down menu is stacked above the Juicebox gallery and does not disappear when hovering over the gallery.

5,545

(1 replies, posted in Juicebox-Pro Support)

Your gallery displays OK on my iPod Touch (iOS 5.1.1) over wi-fi.
Try clearing your browser's cache before reloading the gallery and ensure that JavaScript is enabled.

5,546

(2 replies, posted in Juicebox-Lite Support)

If you have recently made any changes to your gallery, you may have to clear your browser's cache before reloading the gallery in order to see the changes. Otherwise, your browser may be hanging onto and using an older version of your gallery's XML file resulting in a gallery layout that you do not expect.
If you continue to experience difficulties, please post the URL to your gallery so that I can take a look.

5,547

(2 replies, posted in Juicebox-Pro Support)

It is not possible to set different background colors for normal and expanded modes.
Juicebox-Pro uses the same backgroundColor parameter (in the embedding code) for both.

5,548

(7 replies, posted in Juicebox-Lite Support)

The color of the link can be set as in the line of code I posted above.
If you continue to experience difficulties, please post the URL to your gallery so that I can can a look.

5,549

(7 replies, posted in Juicebox-Lite Support)

You can remove the underline from a link by using text-decoration: none; e.g.

<a href="mailto:email@address.com?subject=test" style="text-decoration: none; font-size: 20px; color: #ff0000;">Click here to email</a>

Apologies for the lack of response so far. Unfortunately, I have no access to the support email inbox and do not have the ability to generate new download links, otherwise I would happily do so for you.
I understand that you would like a new download link as soon as possible but please be patient as it is currently the weekend and there may be no-one available to process you request until Monday.
However, I will email the correct department with a reminder on your behalf and you should hopefully hear from them soon.

and here the form link goes to http://www.juicebox.net/support/link_request which is a 404 page not found. You may want to update that to what I'm guessing is the new page: http://www.juicebox.net/admin/download_request/

Thank you for pointing this out. I will ensure that this is updated as soon as possible.