How do I dispaly {FORUM_IMAGE} in viewtopic_body.html ?
I can display the forum description with {FORUM_DESC} but it does not work with the forum image...
Moderator: Moderators
<!-- IF U_MCP --><p>[ <a href="{U_MCP}">{L_MCP}</a> ]</p><!-- ENDIF -->
<h2><img src="/images/ico-forums.gif" width="35" height="35" align="absbottom"> <a href="{U_VIEW_TOPIC}">{TOPIC_TITLE}</a> <!-- IF FORUM_IMAGE --><img src="{FORUM_IMAGE}" alt="{FORUM_DESC}" align='absmiddle' /><!-- ENDIF --></h2>
<!-- IF FORUM_DESC -->
{FORUM_DESC}<br />
<!-- ENDIF --> 'FORUM_DESC' => generate_text_for_display($topic_data['forum_desc'], $topic_data['forum_desc_uid'], $topic_data['forum_desc_bitfield'], $topic_data['forum_desc_options']), 'FORUM_IMAGE' => ($topic_data['forum_image']) ? '<img src="' . $phpbb_root_path . $topic_data['forum_image'] . '" alt="' . $topic_data['forum_name'] . '" />' : '',<h2><a href="{U_VIEW_TOPIC}">{TOPIC_TITLE}</a></h2><span class="forum-image">{FORUM_IMAGE}</span>

Tom wrote:You'll have to make a small edit to a PHP file.
Open viewtopic.php in the phpBB root directory, then find this:
- Code: Select all
'FORUM_DESC' => generate_text_for_display($topic_data['forum_desc'], $topic_data['forum_desc_uid'], $topic_data['forum_desc_bitfield'], $topic_data['forum_desc_options']),
After that on a new line, add this:
- Code: Select all
'FORUM_IMAGE' => $topic_data['forum_image'],
Save the file and the forum image should now show for you in viewtopic.
susan123 wrote:I have contacted the MOD designer, but he asked me to contact you...
nautica wrote:Is there any way I can do the same thing but on viewforum_body?
$template->assign_vars(array(
'U_VIEW_FORUM' => append_sid("{$phpbb_root_path}viewforum.$phpEx", "f=$forum_id&start=$start"),
'FORUM_IMAGE' => $forum_data['forum_image'],
));<!-- INCLUDE overall_header.html -->
<!-- IF U_MCP --><p>[ <a href="{U_MCP}">{L_MCP}</a> ]</p><!-- ENDIF -->
<h2><img src="/images/ico-forums.gif" width="35" height="35" align="absbottom"> <a href="{U_VIEW_FORUM}">{FORUM_NAME}</a> <!-- IF FORUM_IMAGE --><img src="{FORUM_IMAGE}" alt="{FORUM_DESC}" align='absmiddle' /><!-- ENDIF -->
</h2>Users browsing this forum: Xee and 8 guests