Excerpt lenght for list view

Home Forums Calendar Products Events Calendar PRO Excerpt lenght for list view

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #1050954
    Samarpan P.
    Participant

    We would like to increase the lenght of the excerpt for the list view of events (see example). The excerpt is now truncated to 30 words. How can we do that, preferably without using a plugin? The excerpt function seems to strip HTML tags. Why? Can we fix that?

    #1051592
    Josh
    Participant

    Hey,

    Thanks for reaching out to us!

    You can modify the excerpt length by utilizing the “excerpt_length” filter. Something like:

    
    add_filter( 'excerpt_length', 'tribe_excerpt_length' );
    function tribe_excerpt_length() {
    return '60';
    }
    

    should help you to increase the length of the excerpt.

    Additionally, there is an array of allowed HTML elements that can be used with the excerpt (https://cloudup.com/cuGqug1S5Pu). You can use the “tribe_events_excerpt_allowed_html” filter to modify this list if you would like.

    Let me know if this helps.

    Thanks!

    #1076531
    Support Droid
    Keymaster

    This topic has not been active for quite some time and will now be closed.

    If you still need assistance please simply open a new topic (linking to this one if necessary)
    and one of the team will be only too happy to help.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Excerpt lenght for list view’ is closed to new replies.