EXAMPLE:
From:
Code: Select all
<h2><a href="{U_VIEW_FORUM}">{FORUM_NAME}</a></h2>
Code: Select all
<h2><img src="{FORUM_IMAGE}" height="30"><a href="{U_VIEW_FORUM}">{FORUM_NAME}</a></h2>
Code: Select all
<h2><a href="{U_VIEW_FORUM}">{FORUM_NAME}</a></h2>
Code: Select all
<h2><img src="{FORUM_IMAGE}" height="30"><a href="{U_VIEW_FORUM}">{FORUM_NAME}</a></h2>
Code: Select all
<!-- <h2><a href="{U_VIEW_FORUM}">{forumrow.FORUM_IMAGE}{FORUM_NAME}</a></h2> -->
Code: Select all
<!-- <h2><a href="{U_VIEW_FORUM}">{forumrow.FORUM_IMAGE}{FORUM_NAME}</a></h2> -->
Code: Select all
<h2><a href="{U_VIEW_FORUM}">{forumrow.FORUM_IMAGE}{FORUM_NAME}</a></h2>
Code: Select all
{forumrow.FORUM_IMAGE}
RexMundi412 wrote:I'm trying to use the images that I use for "Forum image" set in the forum's ACP settings. I have the images placed in "./phpbb/images/icons/forum/..."
~ Rex
That is where I am stuck.Brf wrote:... you would have to edit viewforum.php to include it.
Code: Select all
'MODERATORS' => (!empty($moderators[$forum_id])) ? implode(', ', $moderators[$forum_id]) : '',
Code: Select all
'FORUM_IMAGE' => ($forum_data['forum_image']) ? '<img src="' . $phpbb_root_path . $forum_data['forum_image'] . ' />' : '',