I am using the photo gallery module, and I am attempting to display a slideshow on my homepage, using images from one of my galleries.
All I need is to output a plain list of images, such as:
<div id="slider">
{site_url}images/slider/photo_01.jpg
{site_url}images/slider/photo_02.jpg
{site_url}images/slider/photo_03.jpg
{site_url}images/slider/photo_04.jpg
</div>I have my images in a gallery titled “slideshow”. This is the code I attempted to use:
<div id="slider">
{exp:gallery:entries gallery="slideshow" orderby="entry_date"}
{entries}
{image_url}
{/entries}
{/exp:gallery:entries}
</div>The output I get from the above code is almost there…the only thing missing is the image urls. It lists out each image with the right width, height, alt and titled tags as entered in the photo gallery. But, instead of the urls, it still has the {image_url} tag.