Topic: Wordpress embedding compatibility
Hello I'm currently evaluating the Juicebox gallery. I've run into issues trying to embed a juicebox gallery.
using the code below does not display the gallery:
<!--START JUICEBOX EMBED-->
<script src="jbcore/juicebox.js"></script>
<script>
new juicebox({
containerId : "juicebox-container",
galleryWidth: "100%",
galleryHeight: "100%",
backgroundColor: "rgba(34,34,34,1)"
});
</script>
<div id="juicebox-container"></div>
<!--END JUICEBOX EMBED-->
see the page at http://dev-sam.secretasianman.tv/?p=82
specifiying the absolute location of jbcore, gives the error Juicebox Error: Config XML file not found.
<!--START JUICEBOX EMBED-->
<script src="http://dev-sam.secretasianman.tv/jb-galleries/chloe/jbcore/juicebox.js"></script>
<script>
new juicebox({
containerId : "juicebox-container",
galleryWidth: "100%",
galleryHeight: "100%",
backgroundColor: "#222222"
});
</script>
<div id="juicebox-container"></div>
<!--END JUICEBOX EMBED-->
see the page at http://dev-sam.secretasianman.tv/?p=84
the full gallery appears to work fine however: http://dev-sam.secretasianman.tv/jb-gal … index.html
Any troubleshooting thoughts?