tribalmike
Forum Replies Created
-
Forum: Plugins
In reply to: [The Events Calendar] Multi Day Events disappear after the first dayAh. I just re-read your initial post and now I realize that you’re talking about a multi-day event. My apologies. I thought we were talking about a recurring event.
A multiday event should be shown as long as it is still in progress. Have you checked the times and timezone settings (for both WP and the Event itself) to make sure this is the case?
If that’s not the problem, then there could be a conflicting plugin somewhere causing issues. Here is our guide for testing for conflicts:
https://theeventscalendar.com/knowledgebase/testing-for-conflicts/Hopefully you’ll be able to find out what’s going on. I’ve tested on our end and can’t seem to reproduce the issue you’re talking about, but I do know that timezones can be a little tricky sometimes.
Let me know what you find out.
Mike
Forum: Plugins
In reply to: [The Events Calendar] slug conflictInteresting… Is this causing any issues on the front-end of the site or is it only this warning that keeps popping up?
Mike
Forum: Plugins
In reply to: [The Events Calendar] Venue map widthNo problem. Good luck!
Mike
Forum: Plugins
In reply to: [The Events Calendar] Events Calendar Not Displaying Correctly.Wonderful! I’m glad it all worked out. Cheers!
Mike
Forum: Plugins
In reply to: [The Events Calendar] Multi Day Events disappear after the first dayHi there, cahartman. Thanks for reaching out to us.
Are you saying they have an older version of our The Events Calendar PRO plugin that was packaged with a theme? What version of The Events Calendar and The Events Calendar PRO are you running?
Another question, while I’m here: I know a lot of community theatres are non-profit organizations. Is this the case for the one you’re managing the site for? If so, they might want to look into our Nonprofit Partnership Program. Here’s a URL fo more info:
https://theeventscalendar.com/knowledgebase/do-you-offer-discounts-for-nonprofit-organizations/Forum: Plugins
In reply to: [The Events Calendar] Reduce size featured event in list viewHey there, nikkoboy.
Have you looked into our Themer’s Guide?
https://theeventscalendar.com/knowledgebase/themers-guide/It requires a little more work than just adding a snippet of CSS to your site, but it allows you to customize pretty much every portion of The Events Calendar. What you’re looking to edit is the List View -> Featured Event template.
You could probably copy a lot of code from the List View -> Single Event template and go from there.
Let me know how that works out for you.
Mike
Forum: Plugins
In reply to: [The Events Calendar] Venue map widthHi there, carryoncoding.
The map in the default template should actually be located to the right of the Venu information. That’s why it’s set to 53%.
Here’s an example of what it looks like in our Demo site:
https://wpshindig.com/event/codeforcuritiba-hack-night/2018-10-03/This does not mean that you are required to use it this way, though. It’s your website. You can feel free to style it anyway you wish. ??
Mike
Forum: Plugins
In reply to: [The Events Calendar] Events Calendar Not Displaying Correctly.Hi, doug123x.
I looked at your website. This is what I see:
https://gyazo.com/2a9596cc06e5e0bfff06e1c04c5e27a9Are you referring to the two titles that say “Events for October 2018”? I noticed that right away. It seems that the top title is being generated by the theme or another plugin and not The Events Calendar.
You might try going through the steps on this page to see if there are any conflicts going on:
https://theeventscalendar.com/knowledgebase/testing-for-conflicts/Let me know what you find out.
Mike
Forum: Plugins
In reply to: [The Events Calendar] Attendee NamesHi, mysticbay,
Since you’re using our premium products, would you mind copying this ticket into our help desk. We use these www.ads-software.com forums for our Free plugins. We’d love to assist you further there. Here’s a link. You’ll just need to log in with your The events Calendar credentials:
https://support.theeventscalendar.com/submit_ticketThank you!
Mike
Forum: Plugins
In reply to: [The Events Calendar] JavaScript errorsHi, gvenk. I’m glad you were able to figure out what was going on.
Thanks for using The Events Calendar!
Mike
Forum: Plugins
In reply to: [The Events Calendar] Events Calendar not displaying properlyHello, Giuseppe. I’m sorry to hear you’re having trouble.
Have you tried following the instructions in our troubleshooting article?
https://theeventscalendar.com/knowledgebase/testing-for-conflicts/Most of the time, there is a theme or plugin that will interfere with the styling of other plugins. That could be what’s going on.
Let me know what you find.
Mike
Forum: Plugins
In reply to: [The Events Calendar] slug conflictHi, Pedro. Did you try changing the slug setting within the Events -> Settings page? You can set the slug to whatever you want:
https://gyazo.com/035ccb06ec18f7e62615c79b3116eb4cHere is documentation for The Events Calendar settings page for your reference:
https://theeventscalendar.com/knowledgebase/wp-admin-settings-overview/Let me know if that does the trick.
Mike
Forum: Plugins
In reply to: [The Events Calendar] Auto change time zoneHi, jorensanbar!
When users view your calendar, they will see the time in the administrator’s timezone. There have been some requests to be able to show in the visitors timezone, though. You can upvote the idea here:
https://tribe.uservoice.com/forums/195723-feature-ideas/suggestions/13195095-option-to-automatically-list-events-near-to-userYours could be the deciding vote!
Mike
Forum: Plugins
In reply to: [The Events Calendar] Events Calendar Venue and Organizer IssuesHave you checked for a plugin conflict? Many times, another plugin will interfere with the performance of another. Try disabling your other plugins and trying again. If it does work after disabling them, then you can go through the process of re-enabling them one by one to discover which plugin is causing the issue.
Also, make sure your WordPress installation is up to date.
Let me know if you’re able to pinpoint the issue.
Mike
Hey there. Just looking at your code, I see one thing that might be the problem. The tribe_get_start_date() function is looking for an integer. You’re passing $event, which seems to be a WP_Post object.
Here’s teh doc:
https://theeventscalendar.com/function/tribe_get_start_date/Try using this, instead:
$title .= ' - ' . tribe_get_start_date( $event->ID );
Let me know how that works out.
Mike