is there someone that can contact me via phone support?
Unfortunately, we are unable to provide telephone support. We provide support via email and the online forum.
but when I view on the web it goes back to the generic photos.
The only way that your gallery would be able to display the images from the sample gallery would be if:
(1) You uploaded the sample images to your web site.
(2) The imageURL entries in your gallery's XML file points towards the sample images.
On the web page whose link you posted above, you have two different lots of embedding code:
<script src="jbcore/juicebox.js"></script>
<script>
new juicebox({
containerId: "juicebox-container",
galleryWidth: "100%",
galleryHeight: "100%",
backgroundColor: "#222222"
});
</script>... and:
<script src="web/images/COTY/jbcore/juicebox.js"></script>
<script>
new juicebox({
baseUrl : 'web/images/COTY/',
containerId: "juicebox-container",
galleryWidth: "100%",
galleryHeight: "100%",
backgroundColor: "rgba(18,18,18,1)"
});
</script>
<div id="juicebox-container">However, if you want only one gallery displayed on your page, then you should remove one of the above.
At the moment, both galleries use the XML file from the sample web gallery (pointing towards the sample images in their respective 'images' folders). Take a look at the following two files on your web server and you will see that they are identical and contain entries only to the sample images.
http://ozielgrandchapternj.org/config.xml
http://ozielgrandchapternj.org/web/imag … config.xml
If you remove the first lot of embedding code from your web page and replace the contents of your 'COTY' directory with the contents of your own gallery folder ('config.xml' file, 'jbcore' folder, 'images' folder, 'thumbs' folder), then your own gallery will display on your main web page.