Forum Replies Created
-
AuthorPosts
-
July 2, 2012 at 10:21 am in reply to: Events Calendar PRO: Recurring Events Options have Disappeared #21398
Andy Fragen
ModeratorOnly 3 tabs showing would indicate that ECP is not active. While waiting for Rob to chime in you might try reinstalling ECP. I don’t know if this will work but it’s a good starting point for troubleshooting.
July 1, 2012 at 2:23 pm in reply to: Events Calendar PRO: Recurring Events Options have Disappeared #21389Andy Fragen
ModeratorDo you see all 5 tabs in TEC settings page?
Andy Fragen
ModeratorThat messge usually shows up when your versions of TEC and ECP are put of sync. Please confirm versions of both plugins.
July 1, 2012 at 2:09 pm in reply to: Events Calendar PRO: Recurring Events Options have Disappeared #21386Andy Fragen
Moderator@Cooper, it sounds like the newly downloaded Events Calendar PRO is not active. Check in your plugin settings to make sure ECP is activated.
Andy Fragen
ModeratorGrab it from the WordPress repository, http://wordpress.org/extend/plugins/the-events-calendar-category-colors/
Andy Fragen
ModeratorJonah — Exactly what I needed. Thanks.
Andy Fragen
Moderator#1 – See https://theeventscalendar.com/manually-checking-for-updates-to-modern-tribe-plugins/ about updating.
#3 – WordPress general settings to change start day of week.After the above see if #2 still is there.
Andy Fragen
ModeratorHi Joyce. It’s exactly like the tutorial. What I’m trying to do is make it very simple. As I’m new to this plugin writing stuff there will be lots of room for improvement once I get something functional. If you want to see how the core of it works look at the category-colors.php file. You can see a version of it working at http://drfragen.com/pub/category-colors.php
Andy Fragen
ModeratorNathan, can you provide a link to your calendar and let us know what versions of TEC and ECP you are using? Also, have you made any modifications to the ECP core files? Thanks.
Andy Fragen
ModeratorThanks Joyce. I’ll contact Rob. FWIW, you can check out what my idea is https://github.com/afragen/events-calendar-category-colors
Andy Fragen
ModeratorAw come on Vince. Let us know if it works for you. 😉 It works for me, but I don’t have it added to an Outlook calendar.
Andy Fragen
Moderator@mike, Events Calendar (free) and Events Calendar PRO are two different and distinct plugins. They won’t/can’t overwrite each other. You must have Events Calendar (free) installed and active for ECP to function. Additionally, they must both be the same version. It happens that the updating mechanism for Events Calendar (free) is via WordPress.org and happens quicker than the update mechanism for ECP, but it will happen. If it doesn’t you can always download the current version of ECP from the Account Central tab at the top of this page.
Andy Fragen
Moderator@Rob, FYI $eventPost->EventEndDate is where the extra 59 seconds come from.
Andy Fragen
Moderator@Rob, I’ve looked through as much of the code as I can and I really don’t see why a extra 59 sec is added to the duration of an event. I do have a better solution than the one above. In the function iCalFeed use the following 2 lines where the first line is currently. There are no changes to the first line.
$duration = TribeDateUtils::timeBetween( $eventPost->EventStartDate, $eventPost->EventEndDate );
$duration = ( intval( $duration / 60 ) * 60 );
Andy Fragen
Moderator@Rob, if you want to ‘fix’ something in the core I’d look at the following mod.
$endDate = date( 'Ymd', $endDateStamp + 86400 );
to
$endDate = date( 'Ymd', $endDateStamp + (86400 - 59) );
-
AuthorPosts
