Hi , it´s easy to resolve Cassandra…. just go to content-frontpage.php file .
There you will find
/* Start the Loop */
$paged = ( get_query_var(‘paged’) ) ? get_query_var(‘paged’) : 1;
$the_query = new WP_Query( array(‘posts_per_page’=>$temperas[‘tempera_frontpostscount’],’paged’=> $paged) );
while ( $the_query->have_posts() ) : $the_query->the_post();
And replace for this
/* Start the Loop */
$paged = ( get_query_var(‘paged’) ) ? get_query_var(‘paged’) : 1;
$the_query = new WP_Query( array(‘posts_per_page’=>$temperas[‘tempera_frontpostscount’],’cat’=> 1 , ‘paged’=> $paged) );
while ( $the_query->have_posts() ) : $the_query->the_post();
Notice you now have a ‘cat’=> 1 , one means the number of the category you want to show up..
Bye