• Resolved Moodles

    (@moodles)


    I have a brand-new install of 3.0.1, not an upgrade from 2.9.2, (it is password protected I cannot provide a link) that is working just great except I cannot see the “pencil” icon to open up the styling options for the WP menu items.

    On this page
    https://wpengineer.com/1974/new-screenshots-of-wordpress-3-0/
    I see where they are supposed to be, but in my install they are missing. This is true in my custom theme and and Twenty-Ten. I have copied the correct code (as far as I can tell) for the menus in functions.php:

    add_theme_support('nav-menus');
    
    function register_my_menus() {
    register_nav_menus(
    array(
    'header-menu' => __( 'Main' ),
    'sidebar-menu' => __( 'Sidebar' ))
    );
    } 
    
    add_action( 'init', 'register_my_menus' );

    I can click the arrow and see how to change the title attribute, but no way to get to the classes or styling options.

    Is this a bug? my problem? I should reinstall admin folder?

Viewing 1 replies (of 1 total)
  • Thread Starter Moodles

    (@moodles)

    I found the answer, within the codex but you have to be reading closely to see it.

    You have to turn them on. In the Admin panel, in upper right corner right underneath your log-in name, there is a small light gray drop-down menu titled “Screen Options.” click that and you will then get a window opened up with check boxes to turn on these options such as classes, link target, and so on.

    Clicking the “screen options” button again “saves” your choices.

Viewing 1 replies (of 1 total)
  • The topic ‘3.0 Menu – Admin Configuration links missing’ is closed to new replies.