Topic: [SOLVED] 'Show all my post' link in the menu bar
Is it possible to add a 'Show all my post' links in the menu bar, just beside 'Profile' and 'Logout' links ?
You are not logged in. Please login or register.
PunBB Forums → PunBB 1.2 modifications, plugins and integrations → [SOLVED] 'Show all my post' link in the menu bar
Is it possible to add a 'Show all my post' links in the menu bar, just beside 'Profile' and 'Logout' links ?
Open functions.php
Find:
$links[] = '<li id="navprofile"><a href="profile.php?id='.$pun_user['id'].'">'.$lang_common['Profile'].'</a>';
$links[] = '<li id="navlogout"><a href="login.php?action=out&id='.$pun_user['id'].'">'.$lang_common['Logout'].'</a>';
Before, add:
$links[] = '<li><a href="search.php?action=show_user&user_id='.$pun_user['id'].'">'.$lang_common['Show your posts'].'</a>';
Find:
$links[] = '<li id="navprofile"><a href="profile.php?id='.$pun_user['id'].'">'.$lang_common['Profile'].'</a>';
$links[] = '<li id="navadmin"><a href="admin_index.php">'.$lang_common['Admin'].'</a>';
$links[] = '<li id="navlogout"><a href="login.php?action=out&id='.$pun_user['id'].'">'.$lang_common['Logout'].'</a>';
Before, add:
$links[] = '<li><a href="search.php?action=show_user&user_id='.$pun_user['id'].'">'.$lang_common['Show your posts'].'</a>';
I believe that should do it.
PunBB Forums → PunBB 1.2 modifications, plugins and integrations → [SOLVED] 'Show all my post' link in the menu bar
Powered by PunBB, supported by Informer Technologies, Inc.