4,826

(3 replies, posted in Juicebox-Pro Support)

The free google search for websites works for my other gallery but doesn't seem to find the comments on my photos that are generated by juicebox. Do you know why it wouldn't?

This is an SEO issue and, as I mentioned in the Feature Requests thread, we are currently investigating SEO and Juicebox. If you implement the solution in this forum thread, Google should index your gallery and you should be able to find the gallery in Google's search results. It may take anything from a few days to several weeks for Google to index your site and the results would link to the gallery page, not to individual images within the gallery.

[Topic split from Feature Requests thread. Original feature request for search functionality left in thread.]

4,827

(496 replies, posted in Juicebox-Pro Support)

@aopchuck

Would love to see simpler way to arrange order of photos in the software "Images" area.

A thumbnail view on the 'Images' tab of JuiceboxBuilder (with easier re-ordering of images) is coming in the next version of Juicebox (though I do not know when it will be released).

4,828

(3 replies, posted in Juicebox-Pro Support)

@JIL20816

Please post feature requests/suggestions in this forum thread. It keeps them all together and ensures that they will not be overlooked.
Thank you.

4,829

(8 replies, posted in Juicebox-Pro Support)

A Juicebox gallery will resize dynamically with the size of the user's browser window only if the dimensions of the gallery itself and those of all parent containers are expressed as percentages. If there is an absolute pixel value anywhere up the chain, the gallery's size will become fixed (e.g. 100% x 100% x 800px = 800px).

In a WordPress environment, this might be difficult to achieve as your WordPress theme might have a main column with a fixed width (or some other fixed dimension in a container that the gallery is nested within).

4,830

(4 replies, posted in Juicebox-Pro Support)

I am glad you have solved your problem.
Thank you for posting back to let me know.

4,831

(5 replies, posted in Juicebox-Pro Support)

www.robertmunozphotography.net is a subdomain of your main domain robertmunozphotography.net and they are not the same as each other.
In your case, if you go to www.robertmunozphotography.net in a browser, you are redirected to robertmunozphotography.net but your URLs use www.robertmunozphotography.net (and the user is no longer on that subdomain).
Try the following embedding code:

<!--START JUICEBOX EMBED-->
<script src="http://robertmunozphotography.net/Galleries/Home/jbcore/juicebox.js"></script>
<script>
  new juicebox ({
    baseUrl : 'http://robertmunozphotography.net/Galleries/Home/',
    containerId : 'juicebox-container',
    galleryWidth : '100%',
    galleryHeight : '700',
    backgroundColor: 'rgba (217,217,217,0)'
  });
  </script>
<div id="juicebox-container"></div>
<!--END JUICEBOX EMBED-->

An absolute URL is a complete path to a file, e.g. 'http://www.example.com/gallery/index.html'.
A relative URL is a path to a file relative to another file (how to get to one file from another), e.g. 'gallery/index.html'.
Using relative URLs, your embedding code would look like the following and as neither www.robertmunozphotography.net nor robertmunozphotography.net are hard-coded, relative URLs will work for both.

<!--START JUICEBOX EMBED-->
<script src="Galleries/Home/jbcore/juicebox.js"></script>
<script>
  new juicebox ({
    baseUrl : 'Galleries/Home/',
    containerId : 'juicebox-container',
    galleryWidth : '100%',
    galleryHeight : '700',
    backgroundColor: 'rgba (217,217,217,0)'
  });
  </script>
<div id="juicebox-container"></div>
<!--END JUICEBOX EMBED-->

4,832

(3 replies, posted in Juicebox-Pro Support)

Actually, I was referring to a search feature for being able to search photos on my own website,
built into Juicebox.

Perhaps the easiest way to achieve this would be to upload your images to a Flickr account and to tag your images with appropriate keywords.
You could then allow users to input a search term (or to choose one from a drop-down menu) and feed the search term to Juicebox via the flickrTags configuration option.
For example, try using the following code as your gallery's index page. Name it 'index.php' and insert your own Flickr username.

<!DOCTYPE html>
<html lang="en">
    <head>
        <title>Juicebox-Pro Gallery</title>
        <meta charset="utf-8" />
        <meta name="apple-mobile-web-app-capable" content="yes" />
        <style type="text/css">
            body, html {
                margin: 0;
                height: 100%;
            }
            #header {
                background-color: #222222;
                color: #ffffff;
                height: 5%;
                text-align: center;
            }
            #main {
                height: 95%;
            }
        </style>
    </head>
    <body>
        <div id="header">
                <form action="index.php" method="get">
                    <div>Tag: <input type="text" name="tag">
                    <input type="submit" value="Submit"></div>
                </form>
        </div>
        <div id="main">
            <!--START JUICEBOX EMBED-->
            <script src="jbcore/juicebox.js"></script>
            <script>
                new juicebox({
                    containerId: 'juicebox-container',
                    useFlickr: 'true',
                    flickrUsername: 'username',
                    flickrTags: '<?php echo $_GET["tag"]?>'
                });
            </script>
            <div id="juicebox-container"></div>
            <!--END JUICEBOX EMBED-->
        </div>
    </body>
</html>

4,833

(5 replies, posted in Juicebox-Pro Support)

I am trying to embed the gallery on the home page at:  http://www.robertmunozphotography.net

I see no sign of any Juicebox embedding code on that page. Are you currently trying to fix the problem or is there another page which displays the "Config XML File Not Found" message?

Please see this FAQ:
When I view my gallery I see the message 'Config XML file not found'. How do I fix this?

Also, bear in mind that all gallery files should be on the same domain or subdomain as the page containing the embedding code so if using absolute URLs which refer to www.robertmunozphotography.net, then your gallery will display only when accessing your web site via the www.robertmunozphotography.net subdomain and not robertmunozphotography.net.
For both to work, use relative URLs in your gallery's embedding code.

4,834

(4 replies, posted in Juicebox-Pro Support)

Although I see the problem in your gallery in Chrome 25, I have been unable to replicate the problem in a test gallery of my own (using the same configuration options that your gallery does).
Unfortunately, it might take some trial and error to try to track down the root of the problem.
Try using smaller images (filesize) in your gallery. I notice that several of your main images are over 1MB in size. When creating a gallery with JuiceboxBuilder-Pro (using the default settings), images are usually around 120KB each. You could also try changing the imagePreloading configuration option. (See the Main Image section of the Config Options page for details.)
Another thing to try would be to change the values of imageTransitionTime and displayTime to see if this makes a difference.

Hopefully, one of the above suggestions will help. However, if the problem continues, then try reducing the configuration options in your gallery's XML file, one by one, until the problem disappears and you find a configuration option which is contributing to the problem.

4,835

(5 replies, posted in Juicebox-Pro Support)

@cprblak

Try something like:

<a href="http://www.example.com/" style="color: #ff0000">Click here</a>

The 'wp-content/uploads/juicebox/' directory should automatically be assigned permissions of 777 when the plugin is activated and the XML files within should have permissions of 644.

Viewing your gallery, it looks like there may be a conflict between the CSS of your current theme and that of the gallery itself.
Try temporarily reverting to the default WordPress theme to see if this makes a difference.
Check your web page for any generalized CSS that the gallery might inherit. Look out for any CSS rules that, for example, apply to all 'img', 'p' or 'div' tags (rather than just specific instances of these tags through use of ids and classes).
(Your gallery's XML file looks OK.)

Please see the description of the expandInNewPage configuration option in the General Options section of the Config Options page (and this link for further details).

It is not possible to change the hit area of the imageClickMode="OPEN_URL".
However, a suitable workaround might be to set enableLooping="TRUE". Then there will always be an image navigation button to the left of the first image and to the right of the last image.

4,840

(1 replies, posted in Juicebox-Pro Support)

Currently, your gallery uses textColor="rgba(99, 99, 99, 1)" and captionBackColor="rgba(255, 0, 0, 0.1)" and your gallery displays these colors correctly.
If you do not see this when you view the gallery in your own browser, then try clearing your browser's cache to ensure that it is not hanging onto and using older versions of your gallery files.

4,841

(4 replies, posted in Juicebox-Pro Support)

It sounds like you might have set buttonBarPosition="TOP" and backButtonPosition="OVERLAY" (which would position the Back Button lower than the Button Bar). If this is the case, then try setting backButtonPosition="TOP".
Otherwise, please post the URL to your gallery so that I can take a look and help further.

4,842

(3 replies, posted in Juicebox-Pro Support)

Hi i just bought juice box pro and i wonder how i can aplly this aplication in the Showkase ??

If you have Showkase, you can create Juicebox-Pro galleries within the Showkase interface (without the need to create a gallery with JuiceboxBuilder-Pro, upload it to your web server and insert embedding code into your page).
Instructions for installing Juicebox-Pro into Showkase can be found here.

and also i wonder how i can use juicebox builder pro to upload in the website with out using showkase?

First, create a gallery with JuiceboxBuilder-Pro (which comes with Juicebox-Pro) and then follow the embedding instructions here.

4,843

(496 replies, posted in Juicebox-Pro Support)

@artwindows

We are currently investigating SEO and Juicebox.
In the meantime, please take a look at this forum post for a possible solution.

4,844

(4 replies, posted in Juicebox-Pro Support)

The Back Button is not part of the Button Bar but if you wish to horizontally center the Back Button, set backButtonHAlign="CENTER" in your gallery's XML file.
If creating or editing your gallery with JuiceboxBuilder-Pro, this configuration option can be found in the 'Customize -> Back Button' section.
Please note that this configuration option is used in Large Screen Mode only.

4,845

(2 replies, posted in Juicebox-Pro Support)

To remove the image shadow:

In JuiceboxBuilder-Pro, go to the 'Customize -> Color' section and set the 'Opacity' for the 'Image Shadow' to zero.

In Showkase, go to 'Site -> Customize Viewers -> Edit (Juicebox)', scroll down to the 'Main Image' section and set the 'Image Shadow Opacity' to zero.

4,846

(496 replies, posted in Juicebox-Pro Support)

@cprblak

In JuiceboxBuilder-Pro, go to the 'Customize -> Color' section and set the 'Opacity' for the shadow that you are trying to remove (whether it is the image, thumb or text shadow) to zero.

4,847

(1 replies, posted in Juicebox-Pro Support)

In theory you can add as much text to a caption as you like (though there is no way to display more than a single line of it within JuiceboxBuilder-Pro).
You might like to edit your gallery's XML file manually in a plain text editor and add the captions this way.

If you wish to include a line break within a caption, use an HTML <br> tag.
For example, in JuiceboxBuilder-Pro, you would enter:

Line 1<br>Line 2

In the gallery's XML file, this would look like:

<caption><![CDATA[Line 1<br>Line 2]]></caption>

4,848

(6 replies, posted in Juicebox-Pro Support)

@Starc12344

As Felix says:

Social sharing support is coming in the next version of Juicebox-Pro. Stay Tuned!

The next version of Juicebox will incorporate sharing via Facebook, Twitter, Google +, Pinterest and Tumblr.
(However, I do not know when it will be released.)

4,849

(1 replies, posted in Juicebox-Pro Support)

Fine adjustments to watermark placement are not available within JuiceboxBuilder-Pro.
You could perhaps introduce a transparent border to your watermark image (in an image manipulation program such as Adobe Photoshop) before feeding it to JuiceboxBuilder-Pro.

4,850

(1 replies, posted in Juicebox-Pro Support)

Juicebox uses only one instance of each configuration option per gallery its value is used in both Small Screen Mode and in Large Screen Mode. It is not possible to set different values for a configuration option for different screen modes.