Forum replies created

    Kenneth Hitt
    Spectator
    Posts: 3
    July 29, 2016 at 9:05 pm #29483

    I already solved the issue. The theme has its own excerpt counter instead of just using the built-in excerpt call from WordPress.

    Kenneth Hitt
    Spectator
    Posts: 3
    July 29, 2016 at 7:24 pm #29480

    I presume you simply didn’t see where, above, I specifically noted that I am already using custom excerpts. The problem is whoever designed the theme foolishly hard-coded an excerpt max length with the ellipsis into basic-functions.php instead of providing a call to the custom excerpt through WordPress. This needs to be fixed.

    Kenneth Hitt
    Spectator
    Posts: 3
    July 28, 2016 at 9:22 pm #29433

    Hi, Andrew. The same issue with the post slider has been driving me crazy, but I have solved it.

    In wp-content/themes/evolve(-plus)/library/functions, there is a file called “basic-functions.php”. Open it up and look for “echo evolve_excerpt_max_charlength($excerpt_length);” in the evolve_posts_slider() section.

    Replace:

    echo evolve_excerpt_max_charlength($excerpt_length);

    with:

    the_excerpt();

    and your regular custom excerpts should now appear in the post slider.