I have de-activated all the plugins like you said but still the second page shows blank. The home featured widget I am using is using this code
<?php
/** Add the home featured section */
add_action( ‘genesis_before_loop’, ‘eleven40_home_featured’ );
function eleven40_home_featured() {
/** Do nothing on page 2 or greater */
if ( get_query_var( ‘paged’ ) >= 2 )
return;
genesis_widget_area( ‘home-featured’, array(
‘before’ => ‘<div class=”home-featured widget-area”>’,
) );
}
do you think the bold command is stopping the plugin to show the navigation menu on page 2