Remove "Read more" from posts

Home Forums Iconic One Pro Support Remove "Read more" from posts

This topic contains 4 replies, has 2 voices, and was last updated by  nicras 10 years, 7 months ago.

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #810

    nicras
    Member

    Can you tell me please how to remove the “Read more” button from posts at the startpage and instead have the whole article shown?

    Regards

    #811

    To show full article instead of excerpts on home page:

    Go to content.php line 52

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

    Replace that line with

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

    Let me know if it works as you wanted.

    #812

    nicras
    Member

    This worked perfectly, Thanks a lot!
    One thing left: After this change the text starts under the featured image, befor it was around the image.

    #813

    Do you want your featured image smaller and aligned to the left? try this:

    Paste the following code in the custom.css or in the style.css of child theme

    .attachment-post-thumbnail.wp-post-image {
        float: left;
        margin-bottom: 3%;
        margin-right: 2%;
        max-width: 50%;
    }
    #814

    nicras
    Member

    You’re great! This is exactly what I wanted it to look like.

Viewing 5 posts - 1 through 5 (of 5 total)

You must be logged in to reply to this topic.