• Hi.

    Love the theme but do NOT want excerpts on the home page. Cannot find a way to turn this off. Help would be very appreciated.

Viewing 2 replies - 1 through 2 (of 2 total)
  • skj

    (@silja-jonsson)

    Hi there, I just downloaded the theme yesterday and wanted to use it at my own website (https://jonssonqh.com/). I had the same question as you but figured it out later last night.

    This is the solution for your problem:

    Find the content.php file in your theme editor and locate the following text:

    <div class="entry-content">
    
    		<?php delighted_the_excerpt( get_the_ID(), true, apply_filters( 'delighted_excerpt_length', 25 ) ); ?>

    Change it to:

    <div class="entry-content">
    
    		<?php the_content( get_the_ID(), true, apply_filters( 'delighted_excerpt_length', 25 ) ); ?>
    
    		<?php

    Summary: change the “delighted_the_excerpt” to “the_content”

    Hope it helps you out!
    /Silja

    Silja, congratulations on finding a solution. I want to leave you with a note of caution. In general, it is not recommended that you modify the theme files directly. If the theme ever gets upgraded (either because of a feature enhancements, bug fixes, or security patches), then your changes will be lost. Instead, the recommended procedure is to create a child theme. In this particular case, you would make a copy of the content.php file from the parent theme into your child theme folder, then make the changes you need to the copy.

    Of course, you are free to do with your site as you please, but if you do make changes to the theme files, then at least keep good notes so you can make the same changes if the theme gets upgraded.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Show Full Posts on Home Page’ is closed to new replies.