Hi,
I am displaying photos based on their Tag - all work except for the Tags that use the Websafe Separator.
The separator works fine for weblog entries using the same tags but not for the photos - photos tagged with a two word tag do not display anything.
Comparing the SQL that pulls the entries for a weblog to a gallery it looks like the gallery code does not recognize the websafe separator, or maybe I did something wrong..
Here is an example of the URL of the page displaying the photos for “theme parks”
/topic_photos/theme-parks
topic_photos is the template.
Here is the code:
{exp:tag:gallery_entries gallery="city_photos" status="open" marker="topic_photos" limit="99" websafe_separator="-" }
{entries}
{row}
<div class="thumb">
<h4>{title}</h4>
<a href="{id_path=/photo/}"><img src="{thumb_url}" width="{thumb_width}" height="{thumb_height}" alt="{title}" title="{title}" /></a>
<p>{caption}</p>
</div>
{/row}
{/entries}
{/exp:tag:gallery_entries}
