Tagged: 

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

    Hi,
    on our page

    http://www.praxis-christiane-moeller.de/kontakt-service-info/aktuelles-service/
    I use the blog entry element. On some entries there is a text excerpt, on others not (the latest 4 ones). I do not find the option to synchronize / edit this (i.e. no. of characters and font size) , neither do I see in the entries themselves a related code or so.

    Thx a lot for your help & best regards Tilman

    #452175

    Hi Tilman!

    Thank you for using Enfold.

    The link above doesn’t exist. Please check if it’s the right one. The excerpt should be limited to a certain character or word count. You can use this plugin to control it: https://wordpress.org/plugins/advanced-excerpt/

    Cheers!
    Ismael

    #452427

    Sorry Ismael,
    the correct link is here: http://www.praxis-christiane-moeller.de/kontakt-service-info/aktuelles/

    the recommended plugin did not lead to any changes, even with trying various settings. I remember that in a earlier enfold version I could edit the excerpts directly in the post, but now this function seems to be gone (?) This is maybe also the reason that in my older posts I still have excerpts on the a.m. overview page, but no in newer ones..
    thx a lo for an idea

    cheers Tilman

    #452633

    Hi!

    Please add following code to Functions.php file in Appearance > Editor and adjust as needed

    add_filter('avf_postgrid_excerpt_length','avia_change_postgrid_excerpt_length', 10, 1);
    function avia_change_postgrid_excerpt_length($length)
    {
       $length = 100;
       return $length;
    }

    Best regards,
    Yigit

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