Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #1316317

    Hello,
    I would need about twice the amount of letters from the text excerpt under the titles ind the blog grid view.
    Could you please help me with the CSS?

    Many thanks and kind regards
    Lukas

    • This topic was modified 3 years, 7 months ago by LukasEEE.
    #1316386

    Hey LukasEEE,

    Thank you for the inquiry.

    You can use this filter in the functions.php file to adjust the length of the masonry excerpt.

    
    function avia_change_masonry_excerpt_length($length)
    {
       $length = 200;
       return $length;
    }
    add_filter('avf_masonry_excerpt_length','avia_change_masonry_excerpt_length', 10, 1);
    

    Default length value is 60.

    Best regards,
    Ismael

    #1316394

    Hey Ismael,

    when I add the code in functions.php from Enfold or Enfold Child, I get a critical error from wordpress:


    Your website has a technical problem
    Since WordPress 5.2, there is a built-in feature that detects when a plugin or theme is causing a fatal error on your site and notifies you with this automated email because of it.

    What did I do wrong?

    Kind regards
    Lukas

    #1316411

    the snippet is correct but:

    if you insert it to parent functions.php there are only a few places where this should be done.
    i prefer as advice: just before the require_once at the very bottom.- where the comment is pointing the place:

    /*
     *  register custom functions that are not related to the framework but necessary for the theme to run
     */
    require_once( 'functions-enfold.php' );
    #1316610

    Hi Lukas,

    If you need further help with this, then please post admin WordPress login details in private, so that we can try to add the function for you. Thanks @guenni007 for helping out :-)

    Best regards,
    Rikard

    #1316718

    Hi Rikard,

    Private.

    Best regards,
    Lukas

    • This reply was modified 3 years, 7 months ago by Rikard.
    #1316719

    Thanks for the help Rikard and @guenni007 ! :-)

    #1316884

    Hi,

    Thanks for that. I’ve added the function for you, and it’s working as it should. Please note that this change will be overwritten on updates, I would recommend that you place this modification in a child theme instead: https://kriesi.at/documentation/enfold/install-enfold-theme/#why-child-theme

    Best regards,
    Rikard

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