• Resolved newcanada

    (@newcanada)


    The main blog page is only showing the summary text (with the ‘read more’ link) despite the settings in the ‘Reading Settings’ being set to “For each article in a feed, show: Full Text”. How do I show the full content of each blog post on the main blog page?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author Guido

    (@guido07111975)

    Hi,

    The Read More is hardcoded, shows up for all posts.

    If you want to remove this, open file style and look for:

    .more

    And add:

    display:none;

    If you want to display whole post, open file index and look for:

    <?php the_excerpt(); ?>

    Change that into:

    <?php the_content(); ?>

    Guido

    Thread Starter newcanada

    (@newcanada)

    Thank you, that helped!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Blog page only showing summary text’ is closed to new replies.