Show Full text rather than Summary

Discussion in 'BlackBird WordPress Theme' started by ebusdk, Mar 25, 2013.

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

    ebusdk Member

    Joined:
    May 14, 2012
    Messages:
    40
    Likes Received:
    1
    Location:
    Denmark
    URL: http://www.danskwebmaster.dk/
    I have selected the BlogView mode, but get the "Summary" view instead of "full post" as selected under Settings

    How do I get the full text to show up on the FrontPage?
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Go to blog.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(600, 188); ?>
                        <?php } else { ?>
                            <?php inkthemes_get_image(600, 188); ?>
                            <?php
                        }
                        ?>
                <?php the_excerpt(); ?>
    with

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

    [​IMG]


    This will solve your issue.
     
  3. ebusdk

    ebusdk Member

    Joined:
    May 14, 2012
    Messages:
    40
    Likes Received:
    1
    Location:
    Denmark
    Thanks
    I found out I needed to do it in loop.php as well, works well now
     
Thread Status:
Not open for further replies.

Share This Page