Forum Replies Created
-
AuthorPosts
-
April 17, 2017 at 6:57 pm in reply to: Upgrade Events Calendar Pro to 4.4.5 broke some links – just an FYI #1270902
Trisha
MemberHi Jack!
Sure thing!! We’ll keep you posted đ
Cheers,
TrishaApril 14, 2017 at 8:28 pm in reply to: Show event name in [tribe-user-event-confirmations] shortcode #1270352Trisha
MemberHello!
Thank you for using The Events Calendar, I can help with this!
You should already be seeing the title of the event. Is it possible that it has already been customized? The template that controls the output for the shortcode is in ‘event-tickets/src/views/shortcodes/my-attendance-list.php‘.
If you prefer you can copy the template to your theme directory by following the instructions on Line 7 of the template. You can then make changes as needed to make the title more prominent or change how the list is output.
If much more detailed set of instructions can be found in our themer’s guide here:Â https://theeventscalendar.com/knowledgebase/themers-guide/
I hope this helps! Let me know how it goes đ
Cheers,
TrishaApril 14, 2017 at 7:25 pm in reply to: Calendar widget displaying current time + 6hours on first item #1270343Trisha
MemberHi Denise,
Wow, I can definitely see your frustration! I think I know what’s going on but let’s try something to be sure.
The code you sent is (I assume) copied directly from the single-event template for widgets. When I paste that as it is into my theme I don’t get the correct date because there are a few missing variables…so try this: Paste the following code at the very top of the same file that you got this code from.
$mini_cal_event_atts = tribe_events_get_widget_event_atts();
$post_date = tribe_events_get_widget_event_post_date();
$post_id = get_the_ID();
$organizer_ids = tribe_get_organizer_ids();
$multiple_organizers = count( $organizer_ids ) > 1;
$city_name = ! empty( $city ) ? tribe_get_city() : '';
$region_name = ! empty( $region ) ? tribe_get_region() : '';
$zip_text = ! empty( $zip ) ? tribe_get_zip() : '';
$has_address_details = ! empty( $city_name ) || ! empty( $region_name ) || ! empty( $zip_text );This is, of course, provided it’s not already there. If it is we have a different problem đ
Let me know how it goes!
Cheers,
TrishaTrisha
MemberHi John,
Thank you for using The Events Calendar! I understand your frustration here and hopefully, I can help out đ
The reason the fix you have isn’t working is because ‘/events/community/add’ isn’t really a page as far as WordPress is concerned. It is one of the ‘views’ that Events Community provides and is generated dynamically by a rewrite rule.
The good news is that you can modify the rewrite rules using the WordPress rewrite API. We have a knowledgebase article that should help get you started. You can find that here:Â https://theeventscalendar.com/knowledgebase/renaming-views/
Scroll down to the ‘View Slugs’ heading to find the information you need. The idea is to create an actual page with the slug you want to use and then add the rewrite rule using the method outlined in the article.
I hope this help! Let me know how it goes đ
Cheers,
TrishaApril 14, 2017 at 12:33 pm in reply to: first / next month links on month view using skeleton style #1270251Trisha
MemberHi Michael!
Thanks for reaching out, I can help with this!
The links are visible they just aren’t styled at all and not where you’d expect them to be so they are super easy to miss! On your calendar, they are in the very center, top and bottom.
To get the styling you see on the Full Styles selection add the following code to your custom css:
#tribe-events-header .tribe-events-sub-nav li,
#tribe-events-header .tribe-events-sub-nav .tribe-events-nav-previous,
#tribe-events-footer .tribe-events-sub-nav li,
#tribe-events-footer .tribe-events-sub-nav .tribe-events-nav-previous {
float: left;
margin-right: 5px;
text-align: left;
}#tribe-events-header .tribe-events-sub-nav .tribe-events-nav-next, #tribe-events-footer .tribe-events-sub-nav .tribe-events-nav-next {
float: right;
margin-left: 5px;
text-align: right;
}This should get you set up, let me know how it goes!
Cheers,
TrishaTrisha
MemberHi, Logan!
Thanks for your patience, this was a bit of a puzzle on our end as well. Grabbing a post object or post ID is easy work for a normal post in WordPress (as you know). But since we’re sorting the events by the event start date it was a bit more complex.
I ended up modifying the query we use for the ‘get next event’ link to make it happen.
See if this works for you:
https://gist.github.com/trishasalas/1ebb4428f59a6873af22af176f7bee79
You’ll need to move single-event.php into your theme as outlined in the themer’s guide here: https://theeventscalendar.com/knowledgebase/themers-guide/
Let me know how it goes!
Cheers,
TrishaTrisha
MemberHi, Michelle!
Thanks for reaching out! I just ran a quick test on your events page and I was able to see results. See the screenshot below:

What are browser/Operating System are you using? It could be a more system specific type of error. You might also try a couple of different computers to see if there’s a pattern to what’s happening.
Let me know what you find out! I’m happy to help troubleshoot this with you!
Cheers,
TrishaApril 13, 2017 at 8:58 pm in reply to: Getting rid of old customized Events Calendar Pro, Installing New Plugin Issues #1269821Trisha
MemberHi, Amy!
Thanks for reaching out and thanks for being such a loyal customer ?
It does sound like you’ll need some developer help with the conversion. We don’t offer that as part of our service but we have a list of recommended developers here:  https://theeventscalendar.com/knowledgebase/find-a-customizer/
Definitely keep us posted if any other questions come up and we’d be happy to help.
Cheers,
TrishaTrisha
MemberHi, Josh!
Thanks for reaching out! I think I may have a solution for you but at the moment it’s not automated.
To make this work you’ll need to purchase Event Aggregator, you can find out more about that here:Â https://theeventscalendar.com/product/event-aggregator/
First, download the .ics file from the correct category on your btu.org site. Here’s an example:

Then you would import the file into using the tab under “Events > Import” and choose .ics file.
I hope this helps! Let me know if you have any other questions, I’m happy to help đ
Cheers,
TrishaApril 13, 2017 at 8:14 pm in reply to: Upgrade Events Calendar Pro to 4.4.5 broke some links – just an FYI #1269783Trisha
MemberHello, Jack!
Thanks for reaching out! I’m sorry to hear about this but glad you were able to find a fairly painless resolution.
I’ll log a ticket for the bug and mark this conversation as ‘Pending Fix’ so you’ll know when that happens.
Cheers,
TrishaTrisha
MemberHi Matthew,
There aren’t any hooks specific to right before or after an event. There are hooks in many of our templates that you may be able to utilize for your purposes. Look in ‘[plugin-dir]/src/views’ for both The Events Calendar and Events Calendar Pro to find the templates.
Additionally, these article in our knowledgebase may be helpful to you: https://theeventscalendar.com/knowledgebase/template-overview/
Hopefully, this will get you what you need! Let me know how it works out or if you need anything else, I’m happy to help!
April 13, 2017 at 7:39 pm in reply to: Events Cal Pro Google Maps Not Displaying with API Key #1269772Trisha
MemberHello, Cheryl!
Thanks for using The Events Calendar! I’m sorry to see this is happening. After looking at your site I suspect it might have something to do with a conflict that is happening with the WP Rocket plugin.
After looking at your site I suspect it might have something to do with a conflict that is happening with the WP Rocket plugin. To confirm this would you mind going through the steps in our testing for conflicts guide here?
Let me know what you find out!
Cheers,
TrishaApril 13, 2017 at 5:57 pm in reply to: Displaying "views-select" as an in-line list rather than a dropdown or "toggle". #1269755Trisha
MemberHi, Audra!
I can help with this! What are you seeing when you use the Skeleton Styles? When I have twenty sixteen activated with the Skeleton Styles I see the select box as well as the list you mention.

I did a quick mockup using the ‘Extra CSS’ option in the Customizer to hopefully show you a starting point. You can see the result of that below:

I suspect that if you’re seeing something different that the Tribe Bar is inheriting some styles from your theme. That’s not unexpected and it’s something we try to allow to happen when it can so that the Calendar matches your theme as much as it can. If your theme styles are being inherited you’ll just need to overwrite those.
I’d recommend moving the files to your theme directory before doing the customization, that way they won’t be overwritten during your next upgrade. You can find out more about that in our themer’s guide here: https://theeventscalendar.com/knowledgebase/themers-guide/
The files you’ll be most interested in are
- the-events-calendar/src/views/modules/bar.php and
- the-events-calendar/src/resources/css/tribe-events-skeleton.css
I hope this answers your question! Let me know how it goes đ
Cheers,
TrishaTrisha
MemberHello, Shane!
Thanks for the reply and sorry that didn’t work as expected. I am glad, however, that it mostly worked đ
Can you think of anything different about the links that it didn’t work on? If not no worries, I’ll make a note of it and keep my ears open.
Let me know if you need anything else, I’m happy to help!
Cheers,
TrishaApril 12, 2017 at 11:52 pm in reply to: Filter Bar Location has Duplicate Autocomplete Entries #1269303Trisha
MemberThis reply is private.
-
AuthorPosts
