Home Page Latest Forum URLs - all broken
Ning To Jamroom
Yes, there is a fix for this already but the new version has not been released yet.
This is the code being used now in the index.tpl file for Ningja.
{* This is the embedded template that is shown for EACH Latest Forum Posts entry on the right side *}
{if isset($_conf.jrNingja_top_discuss_active) && $_conf.jrNingja_top_discuss_active == 'on'}
{capture name="template3" assign="forum_tpl"}
{literal}
{if isset($_items)}
{jrCore_module_url module="jrForum" assign="furl"}
{foreach from=$_items item="item"}
<div class="container">
<div class="row">
<div class="col12 last">
<div class="p5">
{if jrCore_checktype($_conf['jrNingja_forum_profile'], 'url')}
{if isset($item.forum_cat_url)}
<h3><a href="{$_conf.jrNingja_forum_profile}/{$item.forum_cat_url}/{$item._item_id}/{$item.forum_title_url}#last">{$item.forum_title|truncate:30}</a></h3>
{else}
<h3><a href="{$_conf.jrNingja_forum_profile}/{$item._item_id}/{$item.forum_title_url}#last">{$item.forum_title|truncate:30}</a></h3>
{/if}
{else}
{if isset($item.forum_cat_url)}
<h3><a href="{$jamroom_url}/{$item.profile_url}/{$furl}/{$item.forum_cat_url}/{$item._item_id}/{$item.forum_title_url}#last">{$item.forum_title|truncate:30}</a></h3>
{else}
<h3><a href="{$jamroom_url}/{$item.profile_url}/{$furl}/{$item._item_id}/{$item.forum_title_url}#last">{$item.forum_title|truncate:30}</a></h3>
{/if}
{/if}
<div class="normal" style="line-height: 12px;">
<strong>{jrCore_lang skin=$_conf.jrCore_active_skin id="45" default="Posted"}:</strong> {$item.forum_updated|jrCore_date_format:"%A %B %e %Y, %l:%M %p"}<br>
<strong>{jrCore_lang skin=$_conf.jrCore_active_skin id="46" default="By"}:</strong> <a href="{$jamroom_url}/{$item.forum_updated_profile_url}">@{$item.forum_updated_user_name}</a>
</div>
</div>
</div>
</div>
</div>
{/foreach}
{else}
<div class="center p10">
<h3>{jrCore_lang skin=$_conf.jrCore_active_skin id="26" default="No"} {jrCore_lang skin=$_conf.jrCore_active_skin id="19" default="Discussions"}!</h3>
</div>
{/if}
{/literal}
{/capture}
{/if}
{* This is the END of the embedded template that is shown for EACH Top Disscusstion entry on the right side *}