Dal pannello di amministrazione non si può, si deve modificare il tema. Non c'è un tutorial a riguardo su woothemes. A tuo rischio e pericolo:
Devi invertire le due sezioni nel file index.php. Le ho segnate nel codice qui sotto, ma non ho idea se questo possa causare malfunzionamenti. Tieni presente che in caso di errori in questo file, il tuo blog non sarà visibile, ma potrai comunque accedere all'amministrazione e continuare a modificarlo.
Codice PHP:
<?php get_header(); ?>
<?php global $woo_options; ?>
<div id="content" class="col-full">
<div id="main" class="col-left">
<?php if ( function_exists( 'yoast_breadcrumb' ) ) { yoast_breadcrumb( '<div id="breadcrumb"><p>', '</p></div>' ); } ?>
<!-- inizio parte 1 -->
<?php
// Sub featured area
if ( $woo_options['woo_sub_featured'] == 'true' AND !is_paged() )
include ( TEMPLATEPATH . '/includes/sub-featured.php' );
?>
<!-- fine parte 1 -->
<!-- inizio parte 2 -->
<div id="latest"<?php if ( $woo_options['woo_home_two_col'] == 'true' ) echo ' class="two-col"'; ?>>
<h3 class="section"><?php _e( 'Latest News', 'woothemes' ); ?></h3>
<?php
// Exclude featured posts
global $shownposts;
if ( get_option( 'woo_exclude' ) != $shownposts AND !is_paged )
update_option( 'woo_exclude', $shownposts );
if ( is_paged() )
$shownposts = get_option( 'woo_exclude' );
$paged = (get_query_var( 'paged' )) ? get_query_var( 'paged' ) : 1;
$args = array(
'paged'=> $paged,
'post__not_in' => $shownposts
);
query_posts( $args );
?>
<?php if (have_posts()) : $count = 0; while (have_posts()) : the_post(); $count++; ?>
<!-- Post Starts -->
<div <?php if ( $count == 2 ) { post_class('last'); $count = 0; } else { post_class(); } ?>>
<?php if ( $woo_options['woo_post_content'] != "content" ) woo_image( 'width='.$woo_options['woo_thumb_w'].'&height='.$woo_options['woo_thumb_h'].'&class=thumbnail '.$woo_options['woo_thumb_align']); ?>
<?php woo_post_meta(); ?>
<h2 class="title"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
<div class="entry">
<?php global $more; $more = 0; ?>
<?php if ( $woo_options['woo_post_content'] == "content" ) the_content(__( 'Read More...', 'woothemes' )); else the_excerpt(); ?>
</div>
<div class="fix"></div>
<div class="post-more">
<?php if ( $woo_options['woo_post_content'] == "excerpt" ) { ?>
<span class="read-more"><a class="button" href="<?php the_permalink() ?>" title="<?php _e( 'Continue Reading →', 'woothemes' ); ?>"><?php _e( 'Continue Reading', 'woothemes' ); ?></a></span>
<?php } ?>
</div>
</div><!-- /.post -->
<?php endwhile; else: ?>
<div class="post">
<p><?php _e( 'Sorry, no posts matched your criteria.', 'woothemes' ) ?></p>
</div><!-- /.post -->
<?php endif; ?>
<?php woo_pagenav(); ?>
</div><!-- /#latest -->
<!-- fine parte 2 -->
</div><!-- /#main -->
<?php get_sidebar(); ?>
</div><!-- /#content -->
<?php get_footer(); ?>