All,
I have a list with several followings pages that have an anchor element on them, sometimes it has a page connected/referenced, and other times not:
List
Page A (anchor has page connected/referenced)
Page B (anchor does not have page connected/referenced)
Page ...
Page N
I have the following code for my list:
<li><!IoRangeNoRedDotMode><!IoRangeRedDotMode><!--<%lst_banners%>--><!/IoRangeRedDotMode><!/IoRangeNoRedDotMode>
<reddot:cms>
<if>
<query valuea="Context:Pages.GetPage(<%info_guid%>).Elements.GetElement(anc_link).Value[Int:0].Id"
operator="!=" valueb="">
<htmltext><a
href="<%anc_link%>"><%img_photo%></a></htmltext>
</query>
<query
type="else">
<htmltext><%img_photo%></htmltext>
</query>
</if>
</reddot:cms></li>
I've also tried several other iterations of this (like so):
<li><!IoRangeNoRedDotMode><!IoRangeRedDotMode><!--<%lst_banners%>--><!/IoRangeRedDotMode><!/IoRangeNoRedDotMode>
<reddot:cms>
<if>
<query valuea="<%anc_link%>"
operator="!=" valueb="">
<htmltext><a
href="<%anc_link%>"><%img_photo%></a></htmltext>
</query>
<query
type="else">
<htmltext><%img_photo%></htmltext>
</query>
</if>
</reddot:cms></li>
Whenever I do either of these, one image shows up and the other doesn't. Depending upon what value I test, either the image that should be linked shows up, or the one that is not linked shows up, but I can't seem to get them both to show up (meaning something always fails). Any ideas on what I'm doing wrong here?