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 …
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
Thank you, works …