Topic: Moving QuickJump Menu in Header

Hello,

Just asking what piece of code to paste in header.php or main.tpl to display the Quickjump menu ?
I have tried to copy/paste this code with no chance :

// Display the "Jump to" drop list
    if ($pun_config['o_quickjump'] == '1')
    {
        // Load cached quickjump
        @include PUN_ROOT.'cache/cache_quickjump_'.$pun_user['g_id'].'.php';
        if (!defined('PUN_QJ_LOADED'))
        {
            require_once PUN_ROOT.'include/cache.php';
            generate_quickjump_cache($pun_user['g_id']);
            require PUN_ROOT.'cache/cache_quickjump_'.$pun_user['g_id'].'.php';
        }
    }

Thank you for your lights

regards,

Nicolas

2

Re: Moving QuickJump Menu in Header

You can follow the method as explained on this page:
http://wiki.punres.net/Add_a_login_form_over_the_header

Just substitute whatever codes is shown in "login.php" with the quickjump menu code.

Re: Moving QuickJump Menu in Header

Re Koos,

This does the trick.
I have a nice Dopdown list on my header.
Do you know in which file is the dropdown menu coded ? (i would like to change the Title "Go to" or "Navigate"

Regards,

Nicolas

4

Re: Moving QuickJump Menu in Header

It's in include/cache.php under "// Output quickjump as PHP code"