Tagged: 

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

    Hi!

    I would like to have only the excerpts on my blog lists and on all archive pages – but I don’t want to have to use the read more tag. Is this possible?

    Thanks!

    #657156

    Hey highleif,

    Thanks for getting in touch with us!

    Would you mind providing a precise link to your site, showing the elements in question? We need to be able to inspect them in order to help :)

    Best regards,
    Jordan

    #657158

    Hi Jordon, of course!

    Thanks!

    #658195

    Hey!

    Try adding this at the very end of your theme / child theme functions.php file:

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

    Cheers!
    Josue

    #658499

    Great! Thank you very much!

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Blog List / Only Excerpt without "read more"-Tag’ is closed to new replies.