• I’m trying to turn off the excerpts and show the full blog posts, setting it to zero just removes everything. Any ideas?

Viewing 1 replies (of 1 total)
  • Theme Author Alexander Agnarson

    (@alxmedia)

    With a child theme, edit content.php (if you use the standard post type, not grid or list)
    In content.php, locate this on line 36 to 40:

    
    <?php if (get_theme_mod('excerpt-length','24') != '0'): ?>
    	<div class="entry excerpt">				
    		<?php the_excerpt(); ?>
    	</div><!--/.entry-->
    <?php endif; ?>
    

    Change that to:

    
    <div class="entry">				
    <?php the_content(); ?>
    </div><!--/.entry-->
    
Viewing 1 replies (of 1 total)
  • The topic ‘Turn off excerpt to see full blog post?’ is closed to new replies.