• Resolved ECenek

    (@ecenek)


    In the Settings-> Reading the front page is set to show at most 10 posts, all of which are supposed to be Full Text. However, when I go to the front page, all I’m seeing are the 55 word excerpts for each post.

    I’m using the Iconic One theme, and the website is at dixieweaver.com.

    I’m still learning how to use wordpress, so I am not entirely certain how I should fix this.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Theme Author Themonic

    (@themonic)

    Hi,

    Remove || is_home() from the following line

    <?php if ( is_search() || is_home() || is_category() || is_tag() ) : // Display Excerpts for Search, home, category and tag pages ?>

    It would become

    <?php if ( is_search() || is_category() || is_tag() ) : // Display Excerpts for Search, home, category and tag pages ?>

    it is line 44 of content.php

    After doing this you can use the <!–more–> tag in articles to break your posts for home page.

    Do note that if you use full posts on home without breaking then it would cause duplicate content issues.

    Thread Starter ECenek

    (@ecenek)

    I’m sorry but I tried making that change to line 44 and the home page is still showing only the excerpts.

    Theme Author Themonic

    (@themonic)

    Try again after deleting the browser cache.

    The code is correct. If still not able to get it work then send in login details to support@themonic.com with a link to this thread.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Front page showing excerpts instead of full text’ is closed to new replies.