Enable Full Text on Posts Page

How do I enable full text on the posts page? I went into Settings > Reading and checked Full Text, but my posts are still showing excerpts.

This, this! Is it configurable somewhere?
Can this theme respect the “read more” marker in posts?

Option that you can find under Settings - Reading and is called “For each article in a feed, show” is for RSS feed and not blog page.

If you want to display full content for Dazzling theme you need to replace this part of code in content.php file:

<div class="col-sm-6">
	<?php the_excerpt(); ?>
</div>
<?php else : ?>
	<?php the_excerpt(); ?>
<?php endif; ?>

With this one instead:

<div class="col-sm-6">
	<?php the_content(); ?>
</div>
<?php else : ?>
	<?php the_content(); ?>
<?php endif; ?>

Let me know if this helps or you have any other questions.

Thanks, that’s what I did for now (as well as commenting out the “Read more” button which became irrelevant after the first change :wink: ).
Is there a chance it will be configurable in future releases? :slight_smile:
Anyway, good job with that theme - it’s one of the best free themes I’ve ever seen!