Primary navigation menu & footer not showing in category / tag page

This line looks strange:

$wp_query   = new WP_Query( array( 'post-type' => 'post','page' ) );

you should try instead:

$wp_query   = new WP_Query( array( 'post_type' => array('post','page') ) );

ps: thanks to @Johannes Pille for the post_type correction.