This assumes that you have Gallery module 1.3.3 installed as in the following example the slides can be clicked.
If you don't already have a blank template then you will need to go to Elements and create a new template.
Next create a new Document:
Now Duplicate the document and change the Content to following which will enable FlexSlider:
$fl(document).ready(function() {
$('.flexslider').flexslider({
animation: "fade",
touch: false,
controlNav: false,
directionNav: false
});
});
Record the ID of this document.
Head to the Gallery option on the Dashboard
Make a note of the album ID. Then upload as many images to the album as you want in the slider, for each image you should set the Link address that the user will be taken to if they click the slide.
Two chunks are needed to layout the slider.
Under Elements create a new chunk called sliderWrapper and set the Chunk (HTML) to:
<div class="flexslider">
<ul class="slides">
[[+images]]
</ul>
</div>
Create another chunk called sliderItem and set the Chunk (HTML) to:
<li>
<a href="[[+uri]]"><img src="[[+src]]" alt="[[+title]]" /></a>
</li>
The first chunk provides the formatting for the slider which the second provides the formatting for individual slides.
Edit the template for the page that will holder the slider, then within the <head> section add:
[[javascript &core=`1` &src=`[[~72]]`]]
[[javascript &src=`[[~73]]`]]
Where 72 is the ID of the document holding your copy of jsquery.flexslider-min.js and 73 is the ID of the document holding the JavaScript to enable FlexSlider.
Next edit the Document that will have the slider: