Topic: add punbb nav links on all pages of my site

How can i have the punbb navigation bar show up on another page on my site ,

punbb is installed in /forum/ while index.html is in the root directory , i want the navigation links to show in index.html . I have defined FORUM_ROOT and included forum/common.php , i have also created the brd-navlinks div : <div id="brd-navlinks" class="gen-content"> </div> , what else do i need to do?

Re: add punbb nav links on all pages of my site

You can use the function generate_navlinks() in the file include/functions.php. This function generates the main menu. If you need to display the admin menu, you should use the function generate_admin_menu($submenu) in the file include/common_admin.php.

Also, if you are interested, you can read the file common.php lines 173 and from 273 to 300.