Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #872998

    Hello everybody,

    we are using the blog layout „single-small“. I mean this layout with the little featured image on the left side and content on the right.

    Our problem with this layout: different to the other layouts, the single small layout do not offers automatic excerpt with read more… if we do not use the <— more –> tag in the content, this layout displays the full article on the blog page.

    Is there a solution to fix that? In which php file can we change that?

    Thanks!

    #873306

    Hey jan123,

    Have you tried this setting here?
    Image 2017-11-06 at 19.25.23.png

    Best regards,
    Victoria

    #873648

    This setting is only for feeds….

    #874934

    Hi,

    Are you referring to the archive blog pages? Please add this code in the functions.php file.

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

    Best regards,
    Ismael

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.