Hide a menu on posts

if (is_single()) {
 // DONT SHOW MENUS
}

you may pass a post id for any specific post for eg –

if (is_single('4')) {
     // DONT SHOW MENUS
    }

will execute on post with id = 4 . hope it helps