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

    Hi can you advise on the appropriate function to increase the excerpt size to the masonry layout?

    #992223

    Hey brandaspect,

    Thank you for using Enfold.

    This filter should increase the excerpt length.

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

    Default value is 60.

    Best regards,
    Ismael

    #992296

    Thank you Ismail, that worked great, It might be worth considering adding a box in the editor in order to make it easier for people to customize.

    your help is greatly appreciated

    #992410

    Hi,

    You’re welcome!

    That can be a good option but I don’t think we can make a specific option for every minute details without making the theme bloated. Anyway, you can still ask for it in the requests page. And please feel free to open a new thread if you need anything else. :)

    Best regards,
    Ismael

    #992412

    Hi,

    You’re welcome!

    That can be a good option but I don’t think we can make a specific option for every minute details without making the theme bloated. Anyway, you can still ask for it in the requests page. And please feel free to open a new thread if you need anything else. :)

    Best regards,
    Ismael

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