• Despite selecting the Full Text option in the Reading setting, my posts are showing only 50+ words and including the Read More click. How can I resolve this to show the full post?

    I am using the Iconic One Theme.

Viewing 7 replies - 1 through 7 (of 7 total)
  • Try using the <!–more–> tag in your posts.
    where you want the post’s content to stop displaying on the front page. Settings –> Readings this settings used for RSS feed only not the posts display.

    Thread Starter anamarie5425

    (@anamarie5425)

    I don’t want the post’s content to stop displaying on the front page. I want the entire post to display.

    If you are using free iconic theme please follow below steps to remove read more

    Go to your-theme folder -> Open content.php file.

    Search for the_excerpt(); may be line number 55 or 56 in content.php file and replace with below code

    <?php 	if ( is_front_page() ) {
    the_content();
    } else {
    the_excerpt();
    }
    ?>
    Thread Starter anamarie5425

    (@anamarie5425)

    Thank you. This worked, but I apparently replaced too much of the code because my Posts Date are no longer appearing. Here is the code in the content.php. Please advise what I need to insert to bring back the author and date of the posts.

    <?php if ( is_front_page() ) {
    the_content();
    } else {
    the_excerpt();
    }
    ?>
    <?php wp_link_pages( array( ‘before’ => ‘<div class=”page-links”>’ . __( ‘Pages:’, ‘themonic’ ), ‘after’ => ‘</div>’ ) ); ?>
    </div><!– .entry-content –>
    <?php endif; ?>

    Want to display author and post date below of the title please follow below

    Open same file content.php
    Search for “<div class=”below-title-meta”>” may be line number 25 or 26

    If you found , the div above one condition is there if ( is_single() ) :

    replace with below code

    if ( is_single() ||  is_front_page() ) :
    Thread Starter anamarie5425

    (@anamarie5425)

    It worked. Thank you!

    Thread Starter anamarie5425

    (@anamarie5425)

    Navigating to one post from the homepage is no longer working. When the permalink on the homepage is clicked, the complete post does not appear. Only the title, author and categories/hash tags appear. There is no post. What do I need to insert in the editor / content php to resolve this?

Viewing 7 replies - 1 through 7 (of 7 total)

The topic ‘Removing the Read More’ is closed to new replies.