MyBB Community Forums

Full Version: How to add forum name and description in template forumdisplay_subforums
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
i want to show forum name and description in forumdisplay_subforums template, im try like this but not appear

[Image: Screenshot-1.png]

<div class="forumtitle forum padded" id="forum-{$forum['fid']}" style="overflow: hidden; border-bottom: 1px solid #202020; border-radius: 2px; font-size: 22px;">
    <div class="fd-head margincenter textmid">
      <h1 style="display: inherit;margin: inherit;font-weight: inherit;">{$forum['name']}</h1>
      <div class="fullwidth small" style="margin-top: 3px;">
        <h2 style="display: inherit;margin: inherit;font-weight: inherit;">{$forum['description']}</h2>
      </div>
    </div>
  </div>
  <div class="wrapped category anchor" id="category-{$forum['fid']}" style="border-radius: 2px; overflow: hidden;">
    <div class="seperator">Sub-Forums</div>
    {$forums}
  </div>