Long time since I’ve posted - everything’s been going so smoothly. But no more. I’ve been struggling with this for hours, and now I need help.
I’ve got a page that uses reverse related entries. It worked perfectly for a long time. Then one day I noticed every time I went to it I got a blank page. I did a bunch of debugging and discovered that if I comment out the {reverse_related_entries} tag it works fine, and if I tell it not to look at two particular entries it works fine. But if I leave the reverse related code in and let it see either of those entries (there are about 35 total), it fails.
One of these entries used to work. The other isn’t going to display anyway because of an {if}.
Here’s the code. I tried removing the {if writer-blurb} and it didn’t make any difference.
<table>
{exp:weblog:entries weblog="the-writers" orderby="writer-lnf" sort="asc" disable="categories|member_data|pagination|trackbacks"}
{if writer-blurb}
<tr>
<td><a href="http://{path=features/writer}is/{url_title}/">/content/common/sorts/writers/{url_title}.jpg</a></td>
<td>
<a href="http://{path=features/writer}is/{url_title}/" class="link-main">{title}</a> | <a href="http://{path=/general/who-is-fourstory}#{url_title}">full bio</a>
{exp:smarty_pants}{writer-blurb}{/exp:smarty_pants}
<a href="http://{path=features/writer}is/{url_title}/">all features</a> <span class="t-small">| latest:</span>
{reverse_related_entries weblog="the-features" sort="desc" limit="1"}<a href="http://{title_permalink=">{title}</a>{/reverse_related_entries}
<a href="http://{path=weblog/writer}is/{url_title}/">all posts</a> <span class="t-small">| latest:</span>
{reverse_related_entries weblog="the-weblog" sort="desc" limit="1"}<a href="http://{title_permalink=">{title}</a>{/reverse_related_entries}
</td>
</tr>
{/if}
{/exp:weblog:entries}
</table>Any ideas?