Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
menu-manager.php tag childpages
#1
Just a little tweak to make the menu-manager (admin backend - drag and drop menu order) look a little bit more organised by giving all childpages a 'hasparent' class.

changed the following in menu-manager.php on line 66:

Code:
if ($page['parent'] != '') {
                    echo '<li class="clearfix hasparent" rel="'.$page['slug'].'">
                                            <strong>#'.$page['menuOrder'].'</strong>&nbsp;&nbsp;
                                            '. $page['menu'] .' <em>'. $page['title'] .'</em>
                                        </li>';
                                        }
else {
                    echo '<li class="clearfix" rel="'.$page['slug'].'">
                                            <strong>#'.$page['menuOrder'].'</strong>&nbsp;&nbsp;
                                            '. $page['menu'] .' <em>'. $page['title'] .'</em>
                                        </li>';
                                        }

Now the menu-items with a parent can be styled differently (for example I've set a margin-right on li.hasparent strong, so every childpage has an indent)

Perhaps someone can simplify the code a bit, and have a look if it has any side effects?
<º)))><
Reply
#2
(2013-02-10, 00:54:02)uitdecom Wrote: so every menu-item with a parent gets a hasparent tag and can be styled differently (I set a margin-right on the li.hasparent strong }

Why would you need this? You can just use CSS like this:
Code:
ul.menu li { /* styles for top level */ }
ul.menu li li { /* styles for children */ }
ul.menu li li li { /* styles for 3rd level entries */ }
I18N, I18N Search, I18N Gallery, I18N Special Pages - essential plugins for multi-language sites.
Reply
#3
There are no nested lists in the drag and drop menu-manager in the admin/backend.

This is just to make it a bit clearer to see what is a child page and what isn't.
<º)))><
Reply




Users browsing this thread: 1 Guest(s)