I want to put the latest entries from the gallery, blog and forum on the index page but gallery and forums won’t play together. I can have gallery and blog or blog and forums but if I have gallery and forums tags I just get a blank screen, no HTML at all.
Just set these up in 1.6 and 2.0 of forums - there are a few entries in each.
Anything I should have done?
{exp:gallery:entries gallery="mgmt_pics" orderby="entry_date" columns="4" rows="1"}
<table >
{entries}
{row_start}<tr>{/row_start}
{row}
<td>
<a href="http://{id_path=gallery/comments}">{thumb_url}</a>
{title}
</td>
{/row}
{row_blank}<td> </td>{/row_blank}
{row_end}</tr>{/row_end}
{/entries}
</table>
{/exp:gallery:entries}
</div>
<div id="forums">
<h2><a href="http://{site_url}index.php/forums">Forums</a></h2>
<h3>Lastest Posts</h3>
<p><table></p>
<p><tr><br />
<td>Title</td><br />
<td>Last Post Info</td><br />
</tr></p>
<p>{exp:forum:topic_titles orderby="post_date" sort="desc" limit="10"}<br />
<tr><br />
<td><a href="http://{thread_path=forums/viewthread}">{title}</a></td><br />
<td>On: {last_post_date format="%m/%d/%Y %h:%i %a"}</p>
<p>By: <a href="http://{last_author_profile_path=forums/member}">{last_author}</a></td><br />
</tr><br />
{/exp:forum:topic_titles}</p>
<p></table></p>
<p></div> <!--forums -->