Hello,
We just purchased the calendar addon. The calendar is very crowded in the blocks because our title of our events are very long. We need these long titles to identify the class. Is there a customization that we could use to truncate the title in the calendar only? For example we would only want the name of the class, ages, and time. (not the sessions listed or the time listed twice etc…)
Thank you
Laura
So, this would only work if the titles of events each had exactly the same number of characters in them. Our titles are all different lengths.
Do you know if Event Expresso would be able to support additional custom fields that could then be used on the grid style calendar? That might be another option where we could see about adding another title field for each event that would only be used in the grid style calendar display.
Not sure if that would have a lot of other potential unintended consequences though.
Any other ideas would be appreciated. As we are paying for the calendar and can not use it.
thank you
Laura
Hello,
Our event titles are long which works for most of our needs, however when displaying them in the grid style calendar there just isn’t enough room. The boxes look overwhelmingly crowded with duplicate information in each date/time slot
So this is what is in one block: (which includes our long title)
“MOVEMENT MUSIC & MESSY PLAY 10 to 24 months – Sundays @ 10am November Session 10:00am to 10:45am” We do not need all of this to show in the calendar view (but I must have this for the titles in the events in Event Espresso.) All that needs to be on the calendar in this example would be ” MOVEMENT MUSIC & MESSY PLAY 10 to 24 months 10am to 10:45am” The rest we would like to remove.
We added the hook to the functions.php file for the site and it really didn’t do anything.
So this is what is in one block: (which includes our long title)
“MOVEMENT MUSIC & MESSY PLAY 10 to 24 months – Sundays @ 10am November Session 10:00am to 10:45am” We do not need all of this to show in the calendar view (but I must have this for the titles in the events in Event Espresso.) All that needs to be on the calendar in this example would be ” MOVEMENT MUSIC & MESSY PLAY 10 to 24 months 10am to 10:45am” The rest we would like to remove.
it seems you have to use string manipulation? if you have the same pattern for all of your event, you can use something like this.
function my_custom_calendar_filtered_title(
$original_title, $datetime_in_calendar
) {
$newtitle=$datetime_in_calendar->event()->name();
Awesome! if you need anything, feel free to reach us again.
Viewing 12 reply threads
The support post ‘Calendar Add on’ is closed to new replies.
Have a question about this support post? Create a new support post in our support forums and include a link to this existing support post so we can help you.