Hi Everyone
I’m trying to use the the {no_related_entries} conditional to display a message if no entry is related, as per the documentation( http://ellislab.com/expressionengine/user-guide/modules/channel/related_entries.html#cond_no_related_entries ). This doesn’t seem to be working properly. It seems that if it accesses the related entries tag at all it spits out {REL[95][image_2]BIZNPtCNREL} into my template, and doesn’t display the {no_related_entries} content. Any ideas? Below is a simplified version of my code:
{exp:channel:entries channel="gallery" limit="1" category="{embed:page_category}" url_title="{embed:url_title}" dynamic="no"}
{related_entries id="image_2"}
{if no_related_entries}No Entries{/if}
{title}
{gallery_image}
{/related_entries}
{/exp:channel:entries}Thanks
Jason