Reading Setting for Blog - Want Full Text not Summary

Discussion in 'Cloriato WordPress Theme' started by nextstar, Feb 21, 2013.

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

    nextstar New Member

    Joined:
    Jun 10, 2012
    Messages:
    2
    Likes Received:
    0
    For our blog, we would like it to show up as full text and not have a "read more" button.

    I went into the settings>reading settings and changed my setting to "full text" instead of "summary". However, the format didn't change and the "read more" button still shows up.

    Here is the blog:
    http://nextstarvodka.com/blog/
     
  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(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_wrapper .content .post .post_content .read_more{
    display:none;
    }
    This will solve your issue.
     
  3. nextstar

    nextstar New Member

    Joined:
    Jun 10, 2012
    Messages:
    2
    Likes Received:
    0
    Thanks! Got it to work.
     
Thread Status:
Not open for further replies.

Share This Page