In messageindex.template I moved --
// Board Note
if ($context['board_note'])
{
$pos = strpos($modSettings['boardnote_html'], '[note]');
if (!$pos === false && $modSettings['boardnote_view'] == 5) {
$boardHtml = explode('[note]', $modSettings['boardnote_html']);
} else {
$boardHtml = array();
//Use Topic Header View
if ($modSettings['boardnote_view'] == 0) {
$boardHtml[] = '
<div class="cat_bar">
<h3 class="catbg"><span class="left"></span>';
$boardHtml[] = '
</h3>
</div>';
//Use Topic View
} else if ($modSettings['boardnote_view'] == 1) {
$boardHtml[] = '
<div class="windowbg">
<span class="topslice"><span></span></span>
<div class="content">';
$boardHtml[] = '
</div>
<span class="botslice"><span></span></span>
</div>
<br />';
//Use Note View
} else if ($modSettings['boardnote_view'] == 2) {
$boardHtml[] = '
<p class="windowbg description">';
$boardHtml[] = '
</p>';
//Use Roundframe View
} else if ($modSettings['boardnote_view'] == 3) {
$boardHtml[] = '
<div class="windowbg">
<span class="upperframe"><span></span></span>
<div class="roundframe">';
$boardHtml[] = '
</div>
<span class="lowerframe"><span></span></span>
</div>
<br />';
//Use Information View
} else if ($modSettings['boardnote_view'] == 4) {
$boardHtml[] = '
<div class="information">';
$boardHtml[] = '
</div>';
}
}
echo $boardHtml[0] . parse_bbc($context['board_note']) . $boardHtml[1];
}
// End Board Note
So it was ABOVE --
// Show the "Child Boards: ". (there's a link_children but we're going to bold the new ones...)
if (!empty($board['children']))
{
// Sort the links into an array with new boards bold so it can be imploded.
$children = array();
/* Each child in each board's children has:
id, name, description, new (is it new?), topics (#), posts (#), href, link, and last_post. */
foreach ($board['children'] as $child)
{
if (!$child['is_redirect'])
$child['link'] = '<a href="' . $child['href'] . '" ' . ($child['new'] ? 'class="new_posts" ' : '') . 'title="' . ($child['new'] ? $txt['new_posts'] : $txt['old_posts']) . ' (' . $txt['board_topics'] . ': ' . comma_format($child['topics']) . ', ' . $txt['posts'] . ': ' . comma_format($child['posts']) . ')">' . $child['name'] . ($child['new'] ? '</a> <a href="' . $scripturl . '?action=unread;board=' . $child['id'] . '" title="' . $txt['new_posts'] . ' (' . $txt['board_topics'] . ': ' . comma_format($child['topics']) . ', ' . $txt['posts'] . ': ' . comma_format($child['posts']) . ')"><img src="' . $settings['lang_images_url'] . '/new.gif" class="new_posts" alt="" />' : '') . '</a>';
else
$child['link'] = '<a href="' . $child['href'] . '" title="' . comma_format($child['posts']) . ' ' . $txt['redirects'] . '">' . $child['name'] . '</a>';
// Has it posts awaiting approval?
if ($child['can_approve_posts'] && ($child['unapproved_posts'] | $child['unapproved_topics']))
$child['link'] .= ' <a href="' . $scripturl . '?action=moderate;area=postmod;sa=' . ($child['unapproved_topics'] > 0 ? 'topics' : 'posts') . ';brd=' . $child['id'] . ';' . $context['session_var'] . '=' . $context['session_id'] . '" title="' . sprintf($txt['unapproved_posts'], $child['unapproved_topics'], $child['unapproved_posts']) . '" class="moderation_link">(!)</a>';
$children[] = $child['new'] ? '<strong>' . $child['link'] . '</strong>' : $child['link'];
}
echo '
<tr id="board_', $board['id'], '_children"><td colspan="3" class="children windowbg"><strong>', $txt['parent_boards'], '</strong>: ', implode(', ', $children), '</td></tr>';
}
}
echo '
</tbody>
</table>
</div>
</div>';
}
In the hopes I could move the board note box above the child boards.
After doing it, the board note box appeared 9 times above the 9 child boards.