5,076

(7 replies, posted in Juicebox-Pro Support)

The gallery loads in IE but not Firefox, Chrome, or Opera.

Try validating your web page with the W3C Markup Validation Service to see if there are any HTML errors on the page which may be contributing to the problem.
Also, make sure that your web host does not have hotlink protection enabled on your hosting account and that all your gallery files are on the same domain.
If you continue to experience difficulties, please post the URL to your gallery so that I can take a look at it live.

5,077

(4 replies, posted in Juicebox-Pro Support)

I want them to appear very pale grey instead of black.

You should be able to change the color of the buttons using an image manipulation program such as Adobe Photoshop.

Also I would prefer to shrink the size of the reverse the show thumbs buttons (etc)

You would need to keep the size of the buttons the same as in the original 'assets.png' file. You could perhaps keep the bounds for each button the same but use a smaller image in the center of each one.

and reverse them such that I see dark icons against my white back ground ( rather than square buttons with cut outs in the center)

It sounds like you might be better creating a new 'assets.png' file from scratch (using the existing one as a template only to know where the buttons should be placed within the image) rather than trying to modify the existing one.

5,078

(4 replies, posted in Juicebox-Pro Support)

Thank you for the additional information.
I can find very little information about this theme on the internet other than this forum post.
I cannot confirm whether the information in the post is correct but it would appear that the theme is known to conflict with at least one other plugin, includes about 30 JavaScript files and allegedly contains 'a lot of JavaScript errors'. If any of this is true, then it may be very hard to debug and the only solution may be to switch themes whilst creating your WP-Juicebox galleries.
However, the WP-Juicebox 'Add Gallery' pop-up window is essentially a self-contained web page and should not conflict with any JavaScript files loaded in the standard admin section pages.

I could send you a login to my dashboard if you want to take a look.  What's the best way to pm or email it to you?

I have emailed you with an address where you can send me login details to your WordPress Dashboard.
I will gladly take a look but please be aware that I cannot be sure that I will be able to either diagnose or fix the problem.

5,079

(9 replies, posted in Juicebox-Pro Support)

I tested the code before I posted it and it worked OK in my test gallery.

I notice that your web page looks to be a combination of two or more web pages as it has 2 different Doctype Declarations (one half way down the page) and multiple <html>, <head> and <body> tags (some with missing end tags).
Try validating the page with the W3C Markup Validation Service and fix the errors reported.
Once your page validates correctly, it should be rendered with greater predictability and consistency across different browsers.

5,080

(4 replies, posted in Juicebox-Pro Support)

Unfortunately, the theme you use is not free so I am unable to try this for myself.
Is the error message displayed on-screen when you initially try to view a gallery (or at some other point, such as trying to go fullscreen)?
Are you able to try on a different web server to see if this makes any difference?

5,081

(3 replies, posted in Juicebox-Pro Support)

Is there any way of using the config.xml with changes made in the juicebox app with lightroom gallery templates?

Not directly, but you could open the Lightroom plugin's 'config.xml' template file in a plain text editor and add configuration options to the opening <juiceboxgallery> tag so that they are included in all galleries created by the plugin.

5,082

(495 replies, posted in Juicebox-Pro Support)

@jhob

Introducing a cross fade transition is on the roadmap and should hopefully be included in a future version of Juicebox-Pro (although I do not know when this may be).

5,083

(7 replies, posted in Juicebox-Pro Support)

I am glad that you have been able to find and fix your problem.
Thank you for posting back to let me know.

5,084

(9 replies, posted in Juicebox-Pro Support)

This embedding code will display one image (via CSS) as a background to the gallery when the thumbnails are displayed and a different image when the thumbnails are hidden. In order for the background to be visible, the gallery's own background must be transparent.

<!--START JUICEBOX EMBED-->
<script src="jbcore/juicebox.js"></script>
<script>
    jb = new juicebox({
        containerId: 'juicebox-container',
        backgroundColor: 'rgba(0,0,0,0)'
    });
    
    jb.onShowThumbs = function(isShowing) {
        var element = document.getElementById('juicebox-container');
        var image;
        if (isShowing) {
            image = 'image1.jpg';
        } else {
            image = 'image2.jpg';
        }
        element.style.backgroundImage="url('" + image + "')";
    };
</script>
<div id="juicebox-container" style="background-image: url('image1.jpg');"></div>
<!--END JUICEBOX EMBED-->

5,085

(3 replies, posted in Juicebox-Lite Support)

You can horizontally center your gallery by replacing the following line in your gallery's embedding code:

<div id="juicebox-container"></div>

... with:

<div id="juicebox-container" style="margin: 0 auto;"></div>

You can add space above or below your gallery with HTML line breaks <br />.

5,086

(7 replies, posted in Juicebox-Pro Support)

On the 'Manage Galleries' page, WP-Juicebox lists all XML files that it finds in the 'wp-content/uploads/juicebox/' folder. If there are more galleries than will fit in your browser window, you shjould be able to scroll down to see the rest.
Take a look in the 'wp-content/uploads/juicebox/' folder to check that there are, indeed, 274 XML files.
Also, if you have manually edited any of the XML files, make sure that when you resave them, you use a lowercase '.xml' file extension.

The checkbox will not appear when viewing your galleries locally (only when uploaded to a web server, as the checkbox relates to remembering the decision for individual domains).
Also, what actually happens on going fullscreen when setting useFullscreenExpand="TRUE" (the message that is displayed on-screen with or without the checkbox) is dependent on the browser being used to view the gallery rather than on Juicebox-Pro itself.

5,088

(9 replies, posted in Juicebox-Pro Support)

You could perhaps use the Juicebox-Pro API, specifically the onShowThumbs() event, to change the background of your gallery depending on whether or not the thumbnails are displayed.
The online demo notes in the 'API Output' text area when the thumbnails are displayed or hidden. You could view the source of the page in your browser and modify it to suit your own needs. Please note that knowledge of JavaScript will be required.

5,089

(7 replies, posted in Juicebox-Pro Support)

Somehow the Wordpress options value for juicebox got out of sync.

I do not know how that could have happened. WP-Juicebox uses an incremental counter to keep track of the last Gallery Id used and simply adds 1 each time a new gallery is created. (It does not try to fill in gaps and reuse Gallery Ids when individual galleries are deleted.)
However, I am glad that you have been able to fix your problem.
Thank you for posting back to let me know.

5,090

(6 replies, posted in Juicebox-Pro Support)

You could perhaps try adding CSS such as the following to the end of the 'jbcore/classic/theme.css' file (though please note that this is untested and I do not know if it will work or will have any unwanted knock-on effects).

.jb-splash-holder img {
    left: 0px !important;
    top: 0px !important;
}

5,091

(1 replies, posted in Juicebox-Pro Support)

Thank you for reporting.
I have now logged a bug report with the developers.

5,092

(1 replies, posted in Juicebox-Pro Support)

The text is currently hardcoded into the 'juicebox.js' file (which is packed and obfuscated and cannot be modified).

However, the ability for a user to enter custom text for the on-screen tooltip text and messages (similar to the SimpleViewer languageList configuration option) is on the roadmap and will hopefully be introduced in a future version of Juicebox-Pro (although I do not know when this may be).

5,093

(11 replies, posted in Juicebox-Lite Support)

I am glad you have figured it out.
Thank you for posting back to let me know.

5,094

(3 replies, posted in Juicebox-Lite Support)

If you are trying to get your gallery to work locally on your computer, try using paths such as:

baseUrl : 'file:///C:/Users/.../Sites/drupal/sites/all/themes/mg/galleries/Profile_Gallery/',

However, this will not work when uploaded to a web server (as the paths refer to locations on your own computer's hard drive to which internet users have no access).
You would need to swap the paths for relative URLs or absolute URLs such as:

baseUrl : 'http://www.example.com/Sites/drupal/sites/all/themes/mg/galleries/Profile_Gallery/',

5,095

(7 replies, posted in Juicebox-Pro Support)

@ Kaylee

Please see the Using a Resizable Gallery with a Header section of the 'Juicebox - Embedding Guide' (just scroll down the 'Embedding Multiple Galleries' section a little).

This section of the 'Juicebox - Embedding Guide' demonstrates how to have a HTML header or footer and have Juicebox resize to fill the remaining browser window.

Check out the View Resizable Gallery with Top Menu Example.

You can view the source of the web page in your browser and copy/modify it to suit your own needs.
For example, you could delete the header, swap the sample gallery for your own gallery and swap the footer content for your own navigation menu.

5,096

(1 replies, posted in Juicebox-Pro Support)

No. Juicebox-Pro displays only one main image at any one time.

5,097

(11 replies, posted in Juicebox-Lite Support)

All your files and folders look to have been uploaded to the correct locations.
However, when viewing the source of your web page, there is a stray <br /> tag after the baseUrl line in your embedding code. Remove the <br /> entry from the following line:

baseUrl : 'http://meowcreative.businesscatalyst.com/gallery/',<br />

Also, you may need to change your gallery's height from 100% to an absolute pixel value.

5,098

(2 replies, posted in Juicebox-Pro Support)

1.-  Mostly single galleries,can the menu be removed and only the back button(or nothing) in the upper left,find the menu pushs everything too far to the right on mobile.

If you are referring to the Juicebox skin for jAlbum, then the menu can be removed (which will result in a single gallery of images in the root input directory) by going to 'Album -> Settings -> Advanced -> General' (from the drop-down menu at the top of the jAlbum window) and deselecting the 'Process subdirectories' checkbox before clicking 'OK' and making your album.

2.  In the lite version the thumbs seem to be a fixed crop,I have some panoramic galleries that need a thumb that is say 180x90,possible in the PRO???

With Juicebox-Lite, all thumbnails are 85 x 85. With Juicebox-Pro, you can set the dimensions of the thumbnails to whatever you like using the Juicebox-Pro Thumbnail Options thumbWidth and thumbHeight.
You would first need to upgrade the skin from Juicebox-Lite (which it comes bundled with) to Juicebox-Pro by following the instructions on the skin's web page. You would then need to tell jAlbum what size of thumbnail images you would like it to create ('Album -> Settings -> Images -> Image bounds') and enter the corresponding Juicebox-Pro configuration options into the skin settings 'Pro Options' text area as follows:

thumbWidth=180
thumbHeight=90

5,099

(22 replies, posted in Juicebox-Pro Support)

The 'December Special Offer' coupon code (found on Twitter here) is still valid so, for a limited time, you are still able to purchase Juicebox-Pro with a 20% discount by entering the coupon code on the Buy Now! page.

5,100

(1 replies, posted in Juicebox-Pro Support)

The embedding code generated by svBuilder-Pro will look similar for each gallery as it is used when following the embedding instructions here (where the entire contents of the gallery folder should be uploaded to the same directory as the web page containing the embedding code).

Alternatively, you can upload complete gallery folders to your web server (to keep all your galleries separate from each other) and embed them in web pages using the baseUrl method documented here.