When I go to each forum, the top and bottom of the table show both tree links and page numbers.
I want to get rid of the page number on the top of the table and the tree links at the bottom of the table. How do I do it?
in your Themes/default/MessageIndex.template.php look for and remove:
line#109
<b>', $txt[139], ':</b> ', $context['page_index'], $modSettings['topbottomEnable'] ? $context['menu_separator'] . '<a href="#bot">' . ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/' . $context['user']['language'] . '/go_down.gif" alt="' . $txt['topbottom5'] . '" border="0" align="top" />' : $txt['topbottom5']) . '</a>' : '', '
line#286
', theme_linktree(), '
Thanks. Ok, now I want to do the same thing after I click individual postings. Where can I find the code?
Display.template.php
Find (Line 170)
<b>', $txt[139], ':</b> ', $context['page_index'];
Replace
';
Find and remove (Lines 566-568)
if ($settings['linktree_inline'])
echo '
<td valign="top" align="left">', theme_linktree(), '</td> ';