Tagged: ,

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #25497

    Hi on my clients blog I can’t get it to show the text in summary format with a few words. It is showing a lot of content. I’d like it to look like it does in your example with about 40 words or less. I have these settings set up:

    Reading Settings- show 4 blog posts in summary format

    General Settings (theme options)- single author, big picture (no author pic is displayed, feature image is big)

    What do I need to change?

    Thanks much,

    Chris

    #127181

    I just used the more tag to do it manually for now. Is there a way though to set that automatically by chance?

    Thanks much

    #127182

    You can use the more quicktag to manually set the excerpt. If you don’t want to use the more quicktag open up wp-contentthemesenfoldincludesloop-index.php and replace:

    $blog_content = !empty($avia_config['blog_content']) ? $avia_config['blog_content'] : "content";

    with

    $blog_content = !empty($avia_config['blog_content']) ? $avia_config['blog_content'] : "excerpt_read_more";
    if(is_single()) $blog_content = "content";

    WordPress will use the get_the_excerpt() function afterwards which truncates the content automatically…

    #127183

    Thanks, much appreciated :)

    #127184

    Glad Peter could help :)

    Let us know if you have any other questions or issues.

    Regards,

    Devin

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Blog main page not showing in summary format’ is closed to new replies.