Reply To: problems: menu & bbpress

Home Forums Support problems: menu & bbpress Reply To: problems: menu & bbpress

Home Forums Support problems: menu & bbpress Reply To: problems: menu & bbpress

#145417
Uwe Pfeifer

I added this into functions.php but now the menu item Forum is moved to the right, and its still not working.

function generate_remove_bbpress_parent_classes($class)
{
return ( $class == ‘current_page_parent’ ) ? FALSE : TRUE;
}

add_filter(‘nav_menu_css_class’, ‘generate_remove_bbpress_parent_class’);
function generate_remove_bbpress_parent_class($classes)
{
switch (get_post_type())
{
case ‘forum’:
// we’re viewing a custom post type, so remove the ‘current_page_parent’ from all menu items.
$classes = array_filter($classes, “generate_remove_bbpress_parent_classes”);
break;
}
return $classes;
}

the website is here: http://www.unityhub.eu