Topic: Multiple galleries - config issue
Hi there,
My goal is to have two galleries launched from the index/splash page. I've made 2 separate gallery folders for Live and Travel. Each folder contains a config.xml file for each gallery in order to route the image paths. I am receiving errors like: 'the container id cannot be found', 'the xml file cannot be found' or a blank screen will remain.
I've been reading the support page, troubleshooting, using the 'baseUrl' as well as the 'configUrl' taxonomy and still no luck. Does the config.xml file need to be in the root folder along with the index?
Here are the code snippets for each gallery:
Live Gallery
<script src="live/jbcore/juicebox.js"></script>
<script type="text/javascript">
new juicebox({
configUrl: "http://emmamasseyphoto.com/live/config.xml",
containerid:"livecontainer1",
backgroundColor:"rgba(0,0,0,0.9)",
galleryTitle: "Live",
showSplashPage: "ALWAYS",
showOpenButton: "false",
galleryTitlePosition: "NONE",
showThumbsOnLoad: "false",
imageTransitionType: "CROSS_FADE",
captionPosition: "OVERLAY_IMAGE",
imageNavPosition: "IMAGE"
});
</script>
<div id="livecontainer1"></div>
<!--END JUICEBOX EMBED-->
Travel Gallery
<script src="travel/jbcore/juicebox.js"></script>
<script type="text/javascript">
new juicebox({
configURL: "http://emmamasseyphoto.com/travel/config.xml",
containerid:"travelcontainer",
backgroundColor:"rgba(0,0,0,0.9)",
galleryTitle: "Travel",
showSplashPage: "ALWAYS",
showOpenButton: "false",
galleryTitlePosition: "NONE",
showThumbsOnLoad: "false",
imageTransitionType: "CROSS_FADE",
captionPosition: "OVERLAY_IMAGE",
imageNavPosition: "IMAGE"
});
</script>
<div id="travelcontainer"></div>
<!--END JUICEBOX EMBED-->
Also, here are two links of what I'm trying to achieve:
http://www.juicebox.net/demos/pro/splash/
http://www.juicebox.net/demos/support/m … _one_page/
Thanks for your time, any help would be greatly appreciated!