Brook
Forum Replies Created
-
Forum: Plugins
In reply to: [The Events Calendar] Undefined index on plugin updateHowdy Hapiuc Robert,
I really appreciate the report. We saw something similar to that when one of the Tribe plugins was outdated, but not the others. Do you perhaps have an older version of The Events Calendar, or one of it’s addons is now outdated? They should all be version 3.12 right now.
Thanks again! – Brook
Forum: Plugins
In reply to: [The Events Calendar] how to remove Google Map linkHowdy Cybertek,
This is possible with a theme override of the single-event page. Have a look at the Themer’s Guide. It walks you through modifying the PHP templates so you change tstuff like this.
Cheers!
– BrookForum: Plugins
In reply to: [The Events Calendar] how to display just the date & timeHowdy Cybertek,
If you set the End time to be equal to the start time, then the end time is not displayed. That make sense?
Cheers!
– BrookForum: Plugins
In reply to: [The Events Calendar] displaying the calendar horizontallyHowdy brody182,
Yeah I am sorry, that is not the right function for your needs. It will return pubdates not event dates and is focused on the first post of a page.
If you want the day of the week for each one, the easiest way to do it might be to create your own version of the $days_of_week that’s actually $days_of_month. Our plugin uses wp_locale->get_weekday_abbrev for $days_of_week (https://developer.wordpress.org/reference/classes/wp_locale/get_weekday_abbrev/) but you would probably not need to do that if you’re not worried about an international solution. Populate your array with every possible day of the month so 5 weeks of Mon-Sun. From there you determine what the start day of the month and how long the month is using PHP’s date utils, trim the days from the start and end of the month that you dont need. Now that you have that you can have an increment the counter for each day, and just call the current day from the array as you go through each month day. That’s basically what our plugin does, only it is limited to one week. But that’s just the first of the hurdles you are going to face to build this customization.
In this forum, in order to provide volunteer/free support to everyone we are only able to give basic overviews like the above for customizations. That said, sometimes one of the community volunteers has more time and can provide further assistance. So I will definitely leave this topic open in case someone comes along.
Best of luck with your customization.
– BrookForum: Plugins
In reply to: [The Events Calendar] Menu items missing TEC 3.11.2Howdy McCartyParty,
Those might be custom menu items you added at some point. Those specific labels are not found anywhere in our plugin, nor have they been in the past. Do you remember adding them at some point? Perhaps you added those links in your theme or in WP-Admin > Settings > Appearance > Menus. There is also a possibility that they came with your theme, and a recent update to your theme removed them.
Did you find these links on the front public side of your calendar, or in the backend WP Admin menu? If it was in the backend, then the above paragraph is probably inapplicable. There is no reason those should disappear unless another plugin is trying to alter them. Some plugins do that for various reason. If that is the case here we could find out which plugin by doing a conflict test. This guide walks you through how to test for a conflict, and then identify what is conflicting.
Does that help you get to the bottom of this?
Cheers!
– BrookHowdy luukkeee,
I am happy you reached out. Calendar queries are intrinsically complex, and tend to tax the SQL server pretty well. That is why we take it very seriously to optimize our calendar queries as much as possible. We have done extensive testing on them, particularly over the past 12 month, and optimized them in every way we found.
Some recent changes to our Month View did make it perform it a little bit slower than it could, and we have some performance updates for it coming in either 3.12 or 4.0 depending on when they pass QA.
Do you know if it is specific pages that are taxing the server hard? The Month View is one of the most complex query wire, which is why we offer a built-in caching feature for it. Have you enabled month view caching in WP-Admin > Events > Settings > Display ? If month view is not the issue, how many events do you have set to display per page? You might try bumping it down to around 10 if it’s not already.
If your settings are already optimized then you probably have just reached the limits of what your server can handle. Powering a calendar is hard work.
Cheers!
– BrookForum: Plugins
In reply to: [The Events Calendar] da_DK translation errorHello Leo,
I am very sorry, we accidentally missed your response here last month. 🙁 Has this been fixed for you when you update to 3.11?
– Brook
Forum: Plugins
In reply to: [The Events Calendar] Category page listing all eventsHowdy Annedawn,
I am very sorry we never got back to you. Your thread was accidentally missed during out weekly pass. And with the way the forums work here, if you miss it during a single pass you likely will never see it again. 🙁
You could write a custom event list using the function tribe_get_events(), more information on that function is in our docs: The Events Calendar: API Documentation. Or, if you have Events Calendar PRO you could include a list of event titles or even a mini month view calendar via the shortcodes.
Would one of those options work? Sorry again for the ridiculous delay. 🙁
Cheers!
– BrookForum: Plugins
In reply to: [The Events Calendar] Sidebar Widget Featured Images DisappearedHowdy Pat,
I am sorry it took us so long to get back to you. I was just doing some triage, closing old topics that were abandoned or resolved when I came across this one. We missed it during our weekly pass a while back, and when you miss it one time it’s usually lost forever. 🙁
Unfortunately there is no line of code you can change. You would need to do a full theme override for that widget. Have a look at the Themer’s Guide. It walks you through modifying the PHP templates so you add stuff like that.
Cheers!
– BrookForum: Plugins
In reply to: [The Events Calendar] Events Calendar doesn't work! Help!!!Howdy lchild,
I am sorry that is giving you so much trouble. We would definitely be interested in helping you. Could you share some details about your server environment? What version of PHP is it? Is it Windows or Linux?
Would you mind grabbing your system information and pasting it here if your server allows? You can find the system info by going to WP Admin > Events > Settings, clicking on the “Help” tab, and scrolling down to the ‘System Information’ box. (Or by going to [yoursite]/wp-admin/edit.php?post_type=tribe_events&page=tribe-events-calendar&tab=help) That will give me a lot of extra information to help diagnose the problem.
Finally and probably most important, what do your server logs say? What specific error is causing this page?
Thanks for reaching out. With that info hopefully find you a quick fix.
Cheers!
– BrookForum: Plugins
In reply to: [The Events Calendar] Text string for multiple prices not workingWe would definitely be interested in adding some more customizability to the event prices, but we need a set field which only contains the integer as well or else the database can’t parse the input. And it needs to be able to parse it for feature like the Filter Bar which lets you filter out events based on the selected price range. I doubt you will see that exact field ever accept text again, the fact that it could was a bit of a bug.
It sounds like you’re not using Filter Bar though. In your case you might be interested in using an Additional Field to specify the cost, and then showing that instead of the cost value in the List template. Then you could just leave the event cost field, which expects an integer, blank. Would that work?
Cheers!
– BrookForum: Plugins
In reply to: [The Events Calendar] Can Import Events using a function?Howdy guys,
You definitely can add events using our API. It’s not super well documented as of yet, but our plugin runs everything through the plugin function
Tribe__Events__API::createEvent().From there you can specify args. There are tons of possible args thought few are required, and this is where our documentation gets a little fuzzy. You can see a list of possible meta values here: https://theeventscalendar.com/knowledgebase/wordpress-post-meta-data/
You might also checkout the class which power our CSV importer as it implements the above API in a rather concise way. It can be found:
the-events-calendar/src/io/csv/ecp-events-importer.phpPersonally when I am inserting batches of stuff I just try to generate a CSV programatically and then import that. But, that’s just been my preference to date as its usually quite easy to do.
I hope that knowledge helps. If you have any specific ideas on what you would like to see in our documentation please let us know. We are working hard to improve it and appreciate the feedback.
Cheers!
– BrookForum: Plugins
In reply to: [The Events Calendar] Event Title not showing up on CalendarHowdy lcrowe,
That is odd. I am not even seeing the bubble, but I could see it showing up in some browsers.
It is likely conflicting with a plugin or your theme. If we know what it’s conflicting with a solution might can be found. In order to proceed you will need to test if a “conflict” is happening, and if so narrow it down so a fix can be found for it. This guide walks you through how to test for a conflict, and then identify what is conflicting. Did you find a conflict?
Cheers!
– BrookHowdy Travelmark,
Thanks for detailing the problem so thoroughly. The difference is that a page loaded by clicking Next is loaded via ajax. A direct load or a refresh is not ajax.
It would seem something is interfering with our Ajax requests. I have seen this happen a time or three before. It was always the result of a plugin conflict, usually a caching plugin. Could you try a conflict test? This guide walks you through how to test for a conflict, and then identify what is conflicting. You might start with any caching plugins/solutions you have. Disabling them and then retesting. If it is one of those, can they be disabled for ajax requests?
Cheers!
– BrookForum: Plugins
In reply to: [The Events Calendar] Event Calendar not showing up in iOS 8.4Howdy JB,
That is not a known issue at all. If something like that happens it could be the result of a conflict, probably a recently updated plugin or theme. In order to proceed you will need to test if a “conflict” is happening, and if so narrow it down so a fix can be found for it. This guide walks you through how to test for a conflict, and then identify what is conflicting. Are you able to find a conflict?
Cheers!
– Brook