Hi, how can I remove 'HOME' in the navigation menu? I can´t create a new menu, because I have a plugin which doesn´t work with custom menus. thx. Edit: Solved! inkthemes-functions.php: search for if (is_home()) { $homelink = '<li class="current_page_item">' . '<a href="' . home_url('/') . '">' . __('Home', 'figero') . '</a></li>'; } else { $homelink = '<li>' . '<a href="' . home_url('/') . '">' . __('Home', 'figero') . '</a></li>'; } and comment it out.