5,576

(2 replies, posted in Juicebox-Pro Support)

Are there any plans to add more functionality within the Lightroom Juicebox engine?! I have a couple of other 3rd Party plugins that do offer enhanced features so therefore I assume from a technical point of view it is possible. Isn't it?!

As far as I am aware, there are no immediate plans to incorporate Juicebox-Pro options into the interface of the Lightroom plugin, though it is technically possible and may be considered some time in the future.

If there is a certain combination of Pro Options that you use for all of your galleries, you could edit the plugin's 'juicebox.lrwebengine/config.xml' file and add the Pro Options as attributes to the opening <juiceboxgallery> tag so that each time you create a gallery with the plugin, these Pro Options are used and included in the generated gallery's XML file. This may save you from having to edit XML files after you create each gallery.

5,577

(3 replies, posted in Juicebox-Lite Support)

It didn't work

It should work fine. Here it is in action in a Juicebox-Lite test gallery.
All I did was create a basic gallery in JuiceboxBuilder-Lite and replace the following line of code in the gallery's 'index.html' file with the code I posted above.

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

so i was wondering if i could still use the 75% galleryWidth

My reasoning for setting the gallery's width to 100% was to ensure that it completely fills the width of the <div> which I floated right and specified a width of 75% of the total browser window's width. This is equivalent to setting the gallery's width to 75% but I set out my code as I did to try to keep things as clear as possible.

and make a menu in a css file.
On the internet i couldn't find an answer about this.
Only how to format a menu in the css file and put the link-lines in the html-page.
Do you know if it's possible?

It is certainly possible. There are many ways to create a CSS menu. Try a web search and you will find many pre-made templates which you could implement within your web site.
As an alternative, if you are looking to link together multiple galleries, take a look at the 'Using a Resizable Gallery with a Header' section of the 'Embedding Multiple Galleries' support page here, specifically, the View Resizable Gallery with Side Menu Example which appears to be feature the functionality you are after.

5,578

(3 replies, posted in Juicebox-Lite Support)

Set your gallery's width to 100% and try using the following structure on your web page:

<div id="wrap" style="width: 100%;">
    <div id="left" style="width: 25%; float: left;">
        <span>Content for left side of screen goes here</span>
    </div>
    <div id="right" style="width: 75%; float: right;">
        <div id="juicebox-container"></div>
    </div>
</div>

5,579

(2 replies, posted in Juicebox-Lite Support)

It depends on how you are creating your gallery (or more specifically your gallery's XML file) as to whether there are any sorting options available to create the order you require in the first instance.
However, no matter how the gallery is created, you can always open it in JuiceboxBuilder and then reverse the order of the images quickly by selecting 'Images -> Sort -> Reverse' from the application's drop-down menu at the top. The go to the 'Publish' tab and re-save your gallery.

Are you trying to embed a Juicebox gallery in a theme's header?
If so (and you know the gallery id you wish to display), you should be able to use the following code in your theme's 'header.php' file.

<?php
    $JB = new Juicebox();
    echo $JB -> shortcode_handler( array( 'gallery_id '=> '2' ) );
?>

... changing the '2' above to the gallery id of your choice.
Alternatively, the following should also work:

<?php
    echo do_shortcode('[juicebox gallery_id="2"]');
?>

As you have discovered, the gallery's dimensions are tied to the gallery (being stored in the gallery's XML file) and a single gallery cannot be displayed twice with different dimensions each time. In fact, the same gallery should not be displayed twice on the same page because both galleries will create divs with identical names to be embedded into.
I would recommend creating a separate gallery for your theme and, if necessary, duplicating the gallery (with different dimensions) for use elsewhere.

The problem with your original code seems to be the extraction of the gallery id from your custom field as entering the code above (with the hardcoded gallery ids) seems to work fine. However, I would need to know more about the custom field you are using to help with the extraction process.

What is output if you echo $juicebox after defining it on this line:

$juicebox = get_post_meta( $post->ID, 'slideshow_embed', true);

For your subsequent code to work, the output would have to be something like: [juicebox gallery_id="2"]

It looks like the plugin you use is rather complex. Could you give me a quick rundown as to how you are using it and how I can replicate the problem? Thank you.
In the meantime, it might help you to know that the function that handles the shortcode within WP-Juicebox is called 'shortcode_handler' and it is within the class Juicebox defined in 'wp-juicebox.php'.
Perhaps if you called this function instead of 'do_shortcode', it might help.

File received, thank you. I've deleted your link above.
I'll take a look and get back to you in due course.

It would help greatly if I were able to see and use the code/plugin which contains the custom field you refer to.
Would you be able to zip the plugin (if it is a plugin) and upload it somewhere so that I could install it in my WordPress installation and try a few things in order to find a solution? Thanks.

[Edit: OK, looks like you deleted your post...]

Edit: Yes. I tried my suggestion myself and found that it produces PHP errors in debug mode, so I deleted it but you replied before I could post this message.

I have just tried using your Flickr User Name and Tag in JuiceboxBuilder-Lite v1.1.0 and it works fine loading 30 images.
Make sure you are using the latest version of JuiceboxBuilder-Lite (v1.1.0) and that you are entering the User Name and Tag correctly. For example, ensure that you are not pasting your User Name with a leading space which would result in a 'Flickr User Not Found' message.
If you need to upgrade JuiceboxBuilder-Lite, it can be found in the Juicebox-Lite zip package which can be downloaded from this page.
Also, make sure your firewall is not blocking JuiceboxBuilder-Lite from accessing the internet.

Both issues you have reported are known bugs which have already been addressed and will be fixed in the next version which should hopefully be released soon (though I do not know exactly when).

5,586

(9 replies, posted in Juicebox-Lite Support)

It sounds like your theme sets a fixed height for your page which you would need to change in order to add any element (whether it is a Juicebox gallery or something else) with a height of greater than 250px.
I am not familiar with WooThemes but perhaps there is an option in the theme's settings (within the WordPress Dashboard) to alter the page height parameter.
If you cannot find such an option, then perhaps the WooThemes support pages and forum may help further.

5,587

(7 replies, posted in Juicebox-Pro Support)

Are there any limitations when using the small screen mode for desktop, as opposed to large screen?

Yes. Certain configuration options (listed on this page) are marked as 'Large Screen Mode only.'.
The Back Button is one such option. Also, although the showExpandButton option will still function, the useFullscreenExpand option is limited to Large Screen Mode only.

5,588

(7 replies, posted in Juicebox-Pro Support)

Thank you for providing the link to your website and galleries.
Interestingly, when I view your galleries in Chrome on my iPod Touch, the 'Request desktop site' option is greyed-out.
We will investigate further.

5,589

(7 replies, posted in Juicebox-Pro Support)

It certainly sounds like the most likely causes (a 3G operator using content modification which would break the JavaScript within the gallery or the need to clear your browser's cache before reloading your gallery) are not applicable in your case.
Please post the URL to your gallery so that we can take a look. Thank you.

5,590

(9 replies, posted in Juicebox-Lite Support)

In your original site, go into your WordPress Media Library and look to see if there are any images attached to the post containing your Juicebox gallery.
If there are images showing as being attached to your post, go back to 'Edit' your post and click 'Update'.
If there are no images showing as being attached to your post, attach some (upload some first if you have to) and then go back to 'Edit' your post and click 'Update'.

Thank you for the additional information.

5,592

(9 replies, posted in Juicebox-Lite Support)

detail_panel.get_current_photo() is undefined

This JavaScript error is generated because there are no images listed in your XML file.
Once you create a working gallery (with images), this JavaScript error will not be generated.

5,593

(7 replies, posted in Juicebox-Pro Support)

I would like visitors to my gallery to see a thumbnail grid which then leads them to a slideshow on click. Is the only way of achiving this by forcing them into a small screen view?

Yes. Set screenMode="SMALL". Otherwise, in Large Screen Mode, the thumbnails and main images are both displayed together with the thumbnails either positioned above (thumbsPosition="TOP") or below (thumbsPosition="BOTTOM") the main images.

Ideally, I would be able to start with a thumbnail grid and on click, my visitors would be taken to a slideshow with one row of thumbnails (ie., the auto view).

This would require a mix of Small Screen Mode and Large Screen Mode functionality and is not possible.

Is it possible to customise captions through CSS (e.g., make them all bold, change distance from the main image)?

You can use HTML tags within captions, such as <b>Bold text</b> and you can position the caption horizontally through use of the captionHAlign Pro Option (whose value can be LEFT, CENTER or RIGHT).

It looks like you have found a bug. Thank you for reporting.
I have logged a bug report.
Until the bug is fixed, the workaround is to ensure that the backButtonPosition and the galleryTitlePosition are not the same. Set one as TOP and the other as OVERLAY.

5,595

(9 replies, posted in Juicebox-Lite Support)

the images don't appear

You do not seem to have attached any images to the post which contains the gallery as your gallery's XML file contains no images: http://wwwsevenarrows.zippykid.it/wp-co … ebox/2.xml

It seems that maybe wordpress has put it's thumbnails above the juicebox gallery?

It looks like you may have clicked 'Insert Gallery' on the 'Add Media -> Gallery' tab.
This refers to a WordPress gallery and has nothing to do with Juicebox but may account for the images above the Juicebox gallery on your page.
After adding images, clicking 'Save Changes' and being redirected to the 'Gallery' tab, simply close the upload window and publish or update the post.

5,596

(1 replies, posted in Juicebox-Pro Support)

Among other things I've noticed that the picasa plugin creates a "thumbnails" folder, while Juicebuilder creates a "thumbs" one, making them incompatible.

It is not possible to change the name of the thumbnail folder. It is set by Picasa itself and is not user-changeable within a plugin.
However, this should not affect the ability to open and edit the gallery in JuiceboxBuilder-Pro (though any new images added to the gallery will have their thumbnails placed in a new folder named 'thumbs').
If you have any specific issues, please let me know so that I can investigate further.

Besides, I have costumised my simpleviewer picasa plugin to deliver a gallery.xml of my liking. I couldn't do the same with the juicebox one: although I add lines to the header.xml as I did in simpleviewer, they don't appear in the final gallery.

You can edit the 'header.xml' file to add configuration options just as you did with the SimpleViewer plugin for Picasa.
The configuration options for the 'config.xml' file are taken solely from the 'header.xml' plugin file so any and all options you place in here will be copied across into the output gallery folder.
Make sure you do not have a duplicate or older version of the the Juicebox plugin for Picasa and that you are modifying the 'header.xml' file in the correct folder.

5,597

(8 replies, posted in Juicebox-Pro Support)

It is not possible to add non-gallery elements of your web page to the gallery's overlay.

5,598

(5 replies, posted in Juicebox-Lite Support)

I believe this incompatibility will be fixed in the next version on Contact Form 7.
Try downloading and using the current development version of Contact Form 7 from the 'Development Version' link at the top of the 'Other Versions' list on this page.

Is there an easy way to use that plugin, and also the customizations that are in JuiceboxBuilder-Pro?

Yes. You can upgrade WP-Juicebox from Juicebox-Lite (which it comes bundled with) to Juicebox-Pro and then customize your gallery with Pro Options by following the instructions here.
It you have already created a gallery with JuiceboxBuilder-Pro and wish to know what settings your gallery uses, open up your gallery's 'config.xml' file in a plain text editor.
The settings are the attributes to the opening <juiceboxgallery> tag.

5,600

(6 replies, posted in Juicebox-Pro Support)

If using WP-Juicebox to create your galleries within WordPress, then Pro Configuration Options should be entered into 'Pro Options' text area in the form:

screenMode="LARGE"

I have multiple pro customizations do I enter each of these on a separate line, or are they comma separated?

Each entry should be on a separate line, e.g.:

screenMode="LARGE"
enableAutoPlay="TRUE"

This is documented in the 'Upgrading to Juicebox-Pro' section at the bottom of the Juicebox - WordPress Plugin page.