Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #373198

    Currently the Category / Archive page on my site is showing the full content for every post. I would like it to only display the excerpt like the blog page does, can someone please advise on how to do this?

    #373218

    Hi bentonam!

    Try opening up /includes/loop-index.php and change line 8 from this.

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

    To this.

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

    Regards,
    Elliott

    #373390

    That worked great Elliott thanks!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Category / Archive Pages to show Excerpt Only’ is closed to new replies.