• Visual SlideShow

  • FAQ

Open up slide show software link into a _blank page

Q: When I specify a URL in the specific photo to be used as a slide I have no
option (or at least I don't see one) to open that up into a _blank page so
that the visitor to my site doesn't leave my site.

Is there something I'm missing or a work around that you know about?

A: You should find the following code in engine/js/slideshow.js file:

var target=obj.target?obj.target.trim():"_self";

and use target value you need, for example:

var target=obj.target?obj.target.trim():"_blank";

Related