I have several fancybox modules running on my website,
www.placesinpaint.com, all with complex titles running correctly - except for one, which displays only the filenames and none of the other information in the CSV file. I have tried amending the file and the module parameters in different ways, but nothing seems to work.
This is the CSV file - is there anything wrong with it?
"File","Title","Caption"
"boreray.jpg","BORERAY FROM THE GAP","- watercolour"
"gannets_on_boreray.jpg","GANNETS AT BORERAY","- watercolour"
"site_of_st_brendans_kirk.jpg","SITE OF ST BRENDAN'S KIRK HIRTA","- oils"
"mullach_bi.jpg","MULLACH BI HIRTA"."- watercolour"
"poll_a_choire.jpg","POLL A CHOIRE HIRTA","- watercolour"
"soay.jpg","SOAY FROM THE CAMBIR","- watercolour"
"stac_lee_and_stac_armin.jpg","STAC LEE AND STAC ARMIN","- acrylic"
"stac_lee.jpg","STAC LEE","- acrylic"
This is from the parameters box: {$data:Title} {$data:Caption}
and this is from the template box:
{repeater}
{headertemplate}
<table>
{/headertemplate}
{rowtemplate itemCount="4" rowClass="odd;even"}
<tr class="{$rowClass}">
{celltemplate}
<td>
<div>{$data:fancyimage}</div>
<div>{$data:Title}</div>
<div>{$data:Caption}</div>
</td>
{/celltemplate}
{emptycelltemplate}
<td> </td>
{/emptycelltemplate}
</tr>
{/rowtemplate}
{footertemplate}
</table>
{/footertemplate}
{emptytemplate}
No items found
{/emptytemplate}
{/repeater}
You advice would be much appreciated!