Topic: XML Path Variable
I am not certain what my purchase transaction ID is but have included the invoice I requested after purchasing your product. Just started using it today and love it. It is working perfectly and the customization options are excellent. I review the support site but was not able to locate a solution that fit my particular issue. I imagine it is fairly simple but it I do not seem to be able to figure it out.
I have a home builder site built in ASP. I show image galleries of all the individual Project, Products etc. on the detail pages of the site. The Project page remains constant and the content is replaced from the data collected from my database using Microsoft SQL Server. I use url variables to define the ProductID etc. that needs to load. I need to map to a unique config.xml file with the images defined by passing the site the URL value necessary to identify the correct Product. It does not seem to pass the value so it is unable to locate the xml. Here is the code I used for the EMBED and a link to the test site content.
http://www.stanleymartin.com/RESPONSIVE … ectionID=2
<!--START JUICEBOX EMBED-->
<script src="jbcore/juicebox.js"></script>
<script>
new juicebox({
configUrl: "/{PrmSubSectionName_SubSectionID}/custom.xml",
containerId: 'juicebox-container',
galleryWidth: '100%',
galleryHeight: '60%',
backgroundColor: 'rgba(255,255,255,1)'
});
</script>
<div id="juicebox-container">
<!-- Image gallery content for non-javascript devices -->
<noscript>
<h1>Stanley Martin Product Tours</h1>
<p></p>
<p><img src="images/Creighton Farm_02.jpg" title="Creighton Farm_02" alt="" width="1024" height="683" /><br>Creighton Farm_02 </p>
<p><img src="images/banner.jpg" title="banner" alt="" width="1024" height="683" /><br>banner </p>
<p><img src="images/Powells Landing_25.jpg" title="Powells Landing_25" alt="" width="983" height="768" /><br>Powells Landing_25 </p>
<p><img src="images/Winmore Ashland Exterior - Copy.jpg" title="Winmore Ashland Exterior - Copy" alt="" width="1024" height="681" /><br>Winmore Ashland Exterior - Copy </p>
</noscript>
</div>
<!--END JUICEBOX EMBED-->
Hope you can point me in the right direction.