Change length of Blog Post on Home Page

Discussion in 'Slice WordPress Theme' started by bizzyboy, Apr 13, 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 4 blog posts.

    And once I see the entire post I will no longer need to see 'Read More' 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
    Go to blog.php prsent in your theme directory and replace the code

    Code:
    <?php if ((function_exists('has_post_thumbnail')) && (has_post_thumbnail())) { ?>
                            <?php inkthemes_get_thumbnail(250, 170); ?>
                        <?php } else { ?>
                            <?php inkthemes_get_image(250, 170); ?>
                            <?php
                        }
                        ?>   
                                        <?php the_excerpt(); ?>
    with

    Code:
     <?php the_content(); ?>
    Sending image for reference

    [​IMG]


    Now,



    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS
    Code:
    .content_bg .content_bar .post .read_more{
    display:none;
    }

    This will solve your issue.
     
  3. bizzyboy

    bizzyboy Member

    Joined:
    Apr 2, 2013
    Messages:
    87
    Likes Received:
    1
    Thanks, but I have made the 2 changes to the code but I am still seeing post excerpts and not the full post. I have done a DNS Flush and cleared browser cache, and tried different browsers and computers but it's the same issue.
     
  4. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Please provide the following information listed below.

    Thread Link:
    Your Website URL:
    WordPress Username:
    WordPress Password:

    Send this information on our email at [email protected]
     
  5. bizzyboy

    bizzyboy Member

    Joined:
    Apr 2, 2013
    Messages:
    87
    Likes Received:
    1
    Thanks, support email sent.
     
  6. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Support mail sent.
     
  7. bizzyboy

    bizzyboy Member

    Joined:
    Apr 2, 2013
    Messages:
    87
    Likes Received:
    1
    Got your support email and I now have a perfect setup for my site. You guys are the best.:)
     
Thread Status:
Not open for further replies.

Share This Page