If custom taxonomy else conditional [closed]

For custom post types use is_post_type_archive('tips'). Let us know if this works. It should also work with an array is_post_type_archive( array( 'tips', 'cpt', 'another cpt' ) )

I am currently using this function to recognize specific post type archives.

See: A Post Type Archive in codex.

It would be best if you could specify which cases the menu should be generated instead of which cases it shouldn’t. Although, you should be able to use !is_post_type_archive('tips') as well. On which pages do you specifically want these actions to be performed?

if (    ( is_page() 
        && $post->post_parent 
        && !is_front_page() 
        && !is_archive() 
        && !is_404() 
        && !is_post_type_archive('tips') ) {
    $id = get_the_ID();
    $menu_to_use = get_post_meta($id, 'themestore-meta-menu-name', 1);
    echo '<nav class="nav-container group" id="nav-subheader">';
    echo '<div class="nav-toggle" id="nav-subheader-toggle"><i class="icon-reorder"></i></div>';
    wp_nav_menu( array('menu' => $menu_to_use, 'menu_class' => 'nav container group', 'container' => '' )); 
    echo '</nav>';
}