Display entire blog posts on homepage

Discussion in 'Gommero WordPress Theme' started by tsegsean, Aug 7, 2013.

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

    tsegsean Guest

    Joined:
    Jul 24, 2013
    Messages:
    2
    Likes Received:
    0
    Hi there,

    I've got the Grommero theme set to a blog frontpage. By default, the theme truncates the posts, but I would prefer if it displayed them in their entirety instead. How do I accomplish this?

    Thank you
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Go to loop.php present in your theme directory and replace current code

    Code:
        <?php if ((function_exists('has_post_thumbnail')) && (has_post_thumbnail())) { ?>
                            <?php inkthemes_get_thumbnail(153, 114); ?>
                        <?php } else { ?>
                            <?php inkthemes_get_image(153, 114); ?>
                            <?php
                        }
                        ?>
            <?php the_excerpt(); ?>
    With code given below

    Code:
    <?php the_content(); ?>

    Sending image for reference

    2013-08-08_1148.png


    This will solve your issue.
     
  3. tsegsean

    tsegsean Guest

    Joined:
    Jul 24, 2013
    Messages:
    2
    Likes Received:
    0
    Worked like a charm!
    Thanks :)
     
Thread Status:
Not open for further replies.

Share This Page