Topic: link to html page? [SOLVED]

I'd like a website visitor to be able to click an image in the slide show and go to a page on the website.

It seems the linkURL="some-page.html" is meant only to show a larger image? I'd like to have the only mouse action be to click an image to get to an HTML page.

Currently i have no forward/back buttons but clicking on the right-side of an image takes the user forward and on the left takes the user backwards. I don't want this.

enableDirectLinks="true" seemed to do nothing.

Can it be done? If not can I get rid of any user controls (i.e. clicking move to the next slide)?


<juiceboxgallery

    resizeOnImport="false"
    galleryTitlePosition="NONE"
    showImageNav="false"
    showThumbsOnLoad="false"
    showSmallThumbsOnLoad="false"
    showSmallThumbsButton="false"
    showOpenButton="false"
    showExpandButton="false"
    showThumbsButton="false"
    enableAutoPlay="true"
    autoPlayOnLoad="true"
    showAutoPlayStatus="false"
    autoPlayThumbs="false"
    addSEOContent="false"
    showImageNumber="false"
    captionPosition="NONE"
    expandInNewPage="FALSE"
    enableLooping="true"
    showPreloader="false"
    enableDirectLinks="true"
    imageTransitionTime="3"
    enableKeyboardControls="false"
    showImageOverlay="NEVER"

>

<image imageURL="images/a-photo.jpg"
    thumbURL="thumbs/a-photo.jpg"
    linkURL="folder/file.html"
    linkTarget="_blank"
    sourcePath="C:\Users\etc\etc\a-photo.jpg">
    <title><![CDATA[a-photo]]></title>
    <caption><![CDATA[]]></caption>
  </image>

Re: link to html page? [SOLVED]

Set imageClickMode="OPEN_URL" (in JuiceboxBuilder-Pro's 'Customize -> Main Image' section) and when a user clicks on an image, the corresponding linkURL will be opened in a new tab or window defined by linkTarget (which can be set to _blank, _parent, _top or _self on the 'Images' tab).

Re: link to html page? [SOLVED]

Perfect. Thanks Steven. Got that link to URL working now.