Control text length

Home Forums Calendar Products Events Calendar PRO Control text length

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #1067446
    kortris
    Participant

    Hello,

    Please let me know if there is anyway I can control the length of the text that is shown next to the image in list and map view of my calendar

    thank you in advance

    #1069928
    George
    Participant

    Hey @Koro,

    Thanks for reaching out! You should be able to do this with some custom code. I would recommend trying to paste the following snippet into your theme’s functions.php file:


    function custom_excerpt_length( $length ) {
    return 20;
    }
    add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );

    Play around with the actual number there; 20 is just an example there.

    Let me know if this helps!

    Thanks,
    George

    #1080802
    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 ‘Control text length’ is closed to new replies.