How to show full blog post on home page

Discussion in 'Infoway WordPress Theme' started by bizzyboy, Jun 10, 2013.

Thread Status:
Not open for further replies.
  1. bizzyboy

    bizzyboy Member

    Joined:
    Apr 2, 2013
    Messages:
    87
    Likes Received:
    1
    Hi

    I have changed the Front Page On/Off option to Off so I can see my blog posts on the home page.

    However, I have 4 blog posts on my site and only the first 3-4 sentences (Excerpt) appear for each post on the home page but I need the entire post to show for each of the blog posts.

    And once I see the entire post I will no longer need to see 'Take a Tour' so how can I remove that too?

    I hope that makes sense.

    Thanks.
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    1.For your first issue

    It is not possible to do so with this theme, But you can increase the value of the excerpt, If you want to do so then,

    Go to functions.php present in your theme directory and add the code given below

    Code:
    function custom_excerpt_length( $length ) {
        return 999;
    }
    add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );
    2.For your second issue

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .content-bar .post .post_content .read_more {
    display: none;
    }
     
  3. bizzyboy

    bizzyboy Member

    Joined:
    Apr 2, 2013
    Messages:
    87
    Likes Received:
    1
    Great, thanks for your help.
     
Thread Status:
Not open for further replies.

Share This Page