Quote from hymspcp on September 22, 2013, 07:40
I managed to do this manually by editing the bit of code from the free version (and I have no idea how to use PHP)
After this line of code:
<?php if (of_get_option(‘fbox-check’, 0 ) !=’1′ ): get_template_part( ‘featured-box’ ); endif; ?><br />
I pasted this bit from the free theme:
<div id=”content”>
<?php if (have_posts()) : while (have_posts()) : the_post();?><div <?php post_class(); ?> id=”post-<?php the_ID(); ?>”>
<a href=”<?php the_permalink(); ?>”><h2 class=”post-title”><?php the_title();?></h2><?php the_post_thumbnail(‘thumbnail’); ?></a><?php if (is_page()): the_content(); else: $sbExcerptLength=60; the_excerpt(); endif; ?>
Hope this helps someone else!