Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #1417349
    thomas schulte
    Guest

    Hi, after hours of trying I can’t get it working. If I click on the category link above the single post, it doesn’t show the list of posts with the excerpt and read-more button. It shows the complete posts …

    #1417386

    Hey thomas schulte,

    Thank you for the inquiry.

    You can add this code in the functions.php file to display the post excerpt and read more link.

    function avf_change_blog_archive_style() {	
    	global $avia_config;
    	if(!is_single()){ $avia_config['blog_content'] = "excerpt_read_more"; }
    }
    add_action('get_header', 'avf_change_blog_archive_style');
    

    Best regards,
    Ismael

    #1417415

    Thank you, works …

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Excerpt not showing in blog category view’ is closed to new replies.