Forum Replies Created
-
AuthorPosts
-
Geoff
MemberHey @angust,
Do you have any other pages on your site that use the /events slug? If so, will you please make sure to fully delete them and let me know if it makes a difference?
Also, if you could head to Events > Settings > Help, copy the system information on the screen and paste it here as a private reply, that will allow me to review your settings and see if anything sticks out.
Thanks!
GeoffGeoff
MemberHey Jared,
These events were created on July 29, 2014 so perhaps it was an problem with a previous version of calendar pro?
What happens if you create a new recurring event? Does the same issue come up? I’m curious if this is affecting all recurring events or only ones that were published back in 2014.
Thanks!
GeoffGeoff
MemberHeck yeah, nice work Tommy! Yeah, it’s super tricky when theme and plugin styles intertwine like that but you nailed it.
However, some help with the ‘All Events’ link would be appreciated.
Looks like your events do have the link, but it’s been customized in two ways:
- It says “Back to Session Calendar”
- It has been moved below the event title
Check your theme folder and look for a subfolder called tribe-events. If you see that, there should be a file in there called single-event.php that you can open and edit by moving the link elsewhere in the template.
Geoff
Geoff
MemberAwesome, I’m so glad that works! Thanks for following up. 🙂
You can certainly ask me another question about tickets! If you don’t mind, however, will you please open a new thread for that question? We like to keep threads to one topic so they are easier to follow.
I’ll see you in the other thread!
Geoff
Geoff
MemberHi Nima,
Thanks for following up!
Sorry, looks like that username/password combo isn’t letting me in for some reason. I can still try to help you out though.
Do the days without dots on your widget have events and the dot simply isn’t showing?
Can you tell me if that’s the case? That will tell me a lot.
Thanks!
GeoffGeoff
MemberRight on! Thanks for following up and letting me know–I’m glad that helps. 🙂
Geoff
Geoff
MemberHi Robert,
iCal importer stores a “note” on imported events so that deleted events are not re-imported (as this would be the desired behavior for most cases and for automatic imports as well).
Add this snippet to your theme functions.php file. It will remove those saved noted. Re-load the Import page (it will run once per page-load) until the message “Done Deleting” is shown, and then remove the snippet:
/* Deletes 50 posts per page load*/
$posts = get_posts( array( 'numberposts' => 50, 'post_type' =>'deleted_event') );
if (!empty($posts)) {
foreach ($posts as $post) {
wp_delete_post( $post->ID, true);
}
} else {
echo 'Done deleting!';
}
To prevent “deleted events notes” from being created in the future, add this other snippet to your functions.php file:
/*
* Prevents iCal importer from saving a copy of "deleted" events
*/
function tribe_ical_dont_save_deleted () {
$ical_importer = Tribe__Events__Ical_Importer__Main::instance();
remove_action( 'before_delete_post', array( $ical_importer, 'deletedEventSave' ) );
}
add_action( 'wp_loaded', 'tribe_ical_dont_save_deleted' );
Please let me know if you get the events to show again after using the snippets.
Cheers!
GeoffGeoff
MemberHello Cary,
Good questions! Community Events does require The Events Calendar in order to work. That means both The Events Calendar and Community Events need to be installed and active on your site together.
That said, The Events Calendar does work seamlessly with our iCal Importer add-on, which allows you to import events from an outside calendar with a valid iCal file or URL.
Does this help answer your questions? Please let me know. 🙂
Cheers!
GeoffJanuary 26, 2016 at 12:34 pm in reply to: Starting with free Events Calendar version, then upgrading to pro. #1062688Geoff
MemberHey Mark, thanks for reaching out!
No issues whatsoever. You can install Events Calendar PRO at any time (it runs with The Events Calendar rather than instead of) and it will have no bearing on the events you create with The Events Calendar.
Does this help answer your question? Please let me know. 🙂
Cheers!
GeoffJanuary 26, 2016 at 12:32 pm in reply to: Do I have to purchase Pro version to use add-ons like facebook event? #1062687Geoff
MemberHey Mike,
Good question and, yes, that’s totally doable. You can use Facebook Events with the free version of The Events Calendar. Events Calendar PRO is not needed for the two to work together. 🙂
Does this help answer your question? Please let me know.
Cheers!
GeoffGeoff
MemberThis reply is private.
Geoff
MemberHi Greg,
That page is unfortunately not considered part of the calendar, which is why the calendar stylesheet isn’t loading and allowing you to use the calendar button class.
You can add a button style to your theme’s stylesheet and use it if you’d like, but the calendar one itself cannot be used. So, for example:
.my-button-class {
background-color: #21759b;
background-image: none;
border: 0;
-webkit-border-radius: 3px;
border-radius: 3px;
-webkit-box-shadow: none;
box-shadow: none;
color: #fff;
cursor: pointer;
display: inline-block;
font-size: 11px;
font-weight: 700;
letter-spacing: 1px;
line-height: normal;
padding: 6px 9px;
text-align: center;
text-decoration: none;
text-transform: uppercase;
vertical-align: middle;
zoom: 1;
}…then call it on your link:
<a class="my-button-class" href="#">My Button!</a>Cheers!
GeoffGeoff
MemberHey Jared, hope all is well!
That’s certainly odd. Will you please do two things for me:
- Head to Events > Settings and make sure the calendar slug is set to events and the event slug is set to event. If they’re not, please change them and save the settings.
- Try running through the steps outlined here. Looks like it could be a permalink issue and these steps will help clear out that possibility.
Let’s start here and see what we find. 🙂
Thanks!
GeoffJanuary 26, 2016 at 8:52 am in reply to: I get a Fatal Error message when updating Events Calendar Pro #1062593Geoff
MemberHey Morgan, sorry for the trouble!
Will you please try deactivating Community Events, updating PRO, then reactivating Community?
Let me know if that helps clear out the error during update.
Thanks!
GeoffGeoff
MemberHi @angust,
Sorry for the trouble! A “forbidden” (403 error) message is typically the result of file permissions on the server. Will you please check the file permissions for the calendar plugin (see the WordPress Codex for more info on permissions) and confirm that they are set to a level that can be read by World?
If you need direct support for setting file permissions, I would suggest reaching out to the host.
Let’s start there and see what we find. 🙂
Thanks!
Geoff -
AuthorPosts
