I think he's talking about the forum index.
So, the forum index links are added in a different way (a bit hackish I mus admit, but works well and does not require template code change.
The piece of code you're looking for is :
- Code: Select all
if ($link) {
$template->_tpldata['forumrow'][$k]['FORUM_DESC'] .= "<br/>$link";
}
in gym_sitemaps/includes/gym_common.php.
you can use :
- Code: Select all
if ($link) {
$template->_tpldata['forumrow'][$k]['FORUM_DESC'] .= " $link";
}
To use a space and not a line break and see the links displayed in-line after the forum description. Though, it won't be displayed after the forum title.
++