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

    Hi,

    Although I have installed plugin ‘Advance Excerpt’, my blog still shows less than what I input. Earlier when it was Single Author view and excerpts show according to my set words in the plugin. Now I have set it to Grid View and excerpts are smaller.

    Can you please tell me how to fix it?

    http://www.xandrianoir.com/blog-and-reviews

    Regards,
    XN

    #630634

    Hey xa1970,

    I am afraid you’ll need to contact the plugin author for more info about the issue. Making third-party plugins compatible with the theme is unfortunately beyond the support scope we offer. Sorry for that!

    Best regards,
    Andy

    #631914

    Thank you for your reply, Andy.

    But there should be some setting in the theme or blog element to set the excerpt length? I used that plugin because I couldn’t find any setting.

    Regards,
    XN

    #632956

    Hi,

    Please add following code to Functions.php file in Appearance > Editor and adjust the value 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.