blog showing only post summary not the whole post

Discussion in 'VideoCraft WordPress Theme' started by kavi_gtl, Nov 11, 2013.

  1. kavi_gtl

    kavi_gtl New Member

    Joined:
    Sep 25, 2013
    Messages:
    14
    Likes Received:
    0
    Hey ...
    I have a blog page with video posts.

    The page is not showing the complete posts...they have just summary of the posts. I want the video box also shown in the page with the description of the post.

    In settigns- reading - I set it to full text , still no luck.

    Thanks in advance
     
  2. Gourav

    Gourav Support Staff

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

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


    Code:
          <?php if ((function_exists('has_post_thumbnail')) && (has_post_thumbnail())) { ?>
                            <?php inkthemes_get_thumbnail(675, 272); ?>
                        <?php } else { ?>
                            <?php inkthemes_get_image(675, 232); ?>
                            <?php
                        }
                        ?>
                <?php the_excerpt(); ?>

    with code given below

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

    2013-11-12_1222.png

    This will solve your issue.
     

Share This Page