I’m using LG Data Matrix 1.0.0 on one of my MSM sites, but it’s not working when I use it on a different site, it just displays the Data Matrix code from the template without rendering it. The main difference is that the site where it’s not working is pulling entries from a weblog on a another MSM site.
This code works on one of my sites):
{if news_releases_related_links}
{news_releases_related_links disable="headers"}
<h3>Related Links</h3>
<dl>{rows}
<dt><a href="http://{related_url}">{related_title}</a></dt>
{if related_note}<dd>{related_note}</dd>{/if}
{/rows}</dl>
{/news_releases_related_links}
{/if}
This code doesn’t work on one of my other sites):
{if internal_comm_related_links}
{internal_comm_related_links disable="headers"}
<h3>Related Links</h3>
<dl>{rows}
<dt><a href="http://{related_url}">{related_title}</a></dt>
{if related_note}<dd>{related_note}</dd>{/if}
{/rows}</dl>
{/internal_comm_related_links}
{/if}
It also doesn’t work in a reduction test with a simpler template):
{exp:weblog:entries site="ucsf_today" weblog="internal_comm_stories" require_entry="yes" limit="1" disable="member_data|pagination|trackbacks"}
{title}
{if internal_comm_related_links}
{internal_comm_related_links disable="headers"}
<h3>Related Links</h3>
<dl>{rows}
<dt><a href="http://{related_url}">{related_title}</a></dt>
{if related_note}<dd>{related_note}</dd>{/if}
{/rows}</dl>
{/internal_comm_related_links}
{/if}
{/exp:weblog:entries}
A further reduction without any conditionals also doesn’t work):
{exp:weblog:entries site="ucsf_today" weblog="internal_comm_stories" require_entry="yes" limit="1" disable="member_data|pagination|trackbacks"}
{title}
{internal_comm_related_links disable="headers"}
<h2>Related Links</h2>
<dl>{rows}
<dt><a href="http://{related_url}">{related_title}</a></dt>
{/rows}</dl>
{/internal_comm_related_links}
{/exp:weblog:entries}
ExpressionEngine 1.6.6 Build: 20081212 PHP/5.1.6 MySQL 5.0.45 Apache/2.2.3
Packet Tide owns and develops ExpressionEngine. © Packet Tide, All Rights Reserved.