• Resolved Richard Nesbitt

    (@rnesbitt)


    I have an event slider in Elementor, and the excerpts/descriptions get cut off at 49 characters. I don’t see a template for the slider that I can override, so is there a way to change the default length of the excerpts?

    Preferably to a word count, not letters, so we don’t have words chopped in half.

Viewing 1 replies (of 1 total)
  • Please use below code and check,

    
    add_filter( 'excerpt_length', function($length) {
        return 120;
    }, PHP_INT_MAX );
    
Viewing 1 replies (of 1 total)
  • The topic ‘Change length of #_EVENTEXCERPT’ is closed to new replies.