Viewing 1 replies (of 1 total)
  • Thread Starter bradgillap

    (@bradgillap)

    Found my answer from another post.

    Open the content.php and change it fro this

    <?php if ( is_search() ) : // Only display Excerpts for Search ?>
    	<div class="entry-summary">
    		<?php the_excerpt(); ?>
    	</div><!-- .entry-summary -->
    	<?php else : ?>

    to this

    <?php if ( is_search() || is_home() || is_front_page() ) : // Only display Excerpts for Search and home page ?>
    	<div class="entry-summary">
    		<?php the_excerpt(); ?>
    	</div><!-- .entry-summary -->
    	<?php else : ?>
Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: Toolbox] Article summary not showing. Full articles on front page’ is closed to new replies.