Forum Replies Created
-
AuthorPosts
-
Brian
MemberHi,
Thanks for using the Events Calendar.
Here on the pre-sales forum, I’m afraid we do not provide technical support. I would ask that you take any technical support questions across to our wordpress.org forum – our staff scan it periodically and other community members may also be able to help out.
Thanks again!
Brian
MemberHi,
Thanks for using our plugins. I can help out here.
We have this guide to creating order invoices from your account:
Cheers
February 4, 2016 at 7:26 am in reply to: First day of recurring series links to last day event details #1067688Brian
MemberThis reply is private.
Brian
MemberThe iCal importer will pull in the title, date and time, timezone, description, url, geo location(lat and long) and category.
The iCal standard is limited in what it can do and does not pull, organizers, venues, images, google maps, or anything else not listed above.
February 4, 2016 at 7:12 am in reply to: Category calendar ical link seems to have events from other categories… #1067681Brian
MemberHi Scott,
I think I narrowed down the issue for this and have a temporary fix you can use to fix the Category Month Views iCal Feeds.
/*
* The Events Calendar - Force Category to iCal Feed
*/
add_filter( 'tribe_ical_feed_month_view_query_args', 'tribe_modify_month_ical_query', 10, 2 );
function tribe_modify_month_ical_query( $args, $month ) {
global $wp_query;
$category = '';
if ( isset( $wp_query->query_vars[Tribe__Events__Main::TAXONOMY]) ) {
$category = $wp_query->query_vars[ Tribe__Events__Main::TAXONOMY ];
}
if ( $category ) {
$args[ Tribe__Events__Main::TAXONOMY ] = $category;
}
return $args;
}Adding that to your theme’s functions.php should force the iCal in month view categories to correctly only show events in that category.
I found that if you use the next and previous event links that the export works correctly for all views, it is just the initial load creating the bug.
Let us know if that helps.
Thanks
February 4, 2016 at 7:10 am in reply to: Problem with iCal export and Multiple Categories visible #1067680Brian
MemberSo I looked into downgrading and the issue is in 3.12.6 too.
I did create a filter that helps fix this in the month view in my tests:
/*
* The Events Calendar - Force Category to iCal Feed
*/
add_filter( 'tribe_ical_feed_month_view_query_args', 'tribe_modify_month_ical_query', 10, 2 );
function tribe_modify_month_ical_query( $args, $month ) {
global $wp_query;
$category = '';
if ( isset( $wp_query->query_vars[Tribe__Events__Main::TAXONOMY]) ) {
$category = $wp_query->query_vars[ Tribe__Events__Main::TAXONOMY ];
}
if ( $category ) {
$args[ Tribe__Events__Main::TAXONOMY ] = $category;
}
return $args;
}Adding that to your theme’s functions.php should force the iCal in month view categories to correctly only show events in that category.
I found that if you use the next and previous event links that the export works correctly for all views, it is just the initial load creating the bug, which would be what scripts are using.
Let me know if using that filter works for you for now.
Thanks
February 4, 2016 at 6:01 am in reply to: TECpro does not remember license key, doesn't provide auto-update #1067465Brian
MemberI am glad to see you were able to get it working.
You are right it could be better and I have a ticket in place for us to address this and make it more intuitive, thanks for your feedback.
I am going to go ahead and close this ticket. If you have a similar issue or another in the future, please do not hesitate to create a new ticket.
Thanks!
Brian
MemberGreat, glad it helps.
Thanks for sharing your coding too.
I am going to go ahead and close this ticket, but if you need help on this or something else please post a new ticket.
Thanks!
February 4, 2016 at 5:49 am in reply to: The Events Calendar Category Colors are not showing up #1067461Brian
MemberOk thanks.
Brian
MemberHi Darion,
Yes if you update the plugin you would have to add back the coding until the feature becomes part of the plugin.
February 3, 2016 at 6:28 pm in reply to: Problem with iCal export and Multiple Categories visible #1067327Brian
MemberThe best bet might be to downgrade to 3.12.x to get you up and running with it.
I will test tomorrow to verify it works correctly there.
Brian
MemberGreat, glad it helps, I am going to go ahead and close this ticket, but if you need help on this or something else please post a new ticket.
Thanks!
Brian
MemberOh my bad I see the issue now.
That coding is for Eventbrite Tickets, which is a different plugin from Event Tickets Plus.
Sorry for the confusion about that.
We have this guide for Event Tickets Plus
https://theeventscalendar.com/knowledgebase/moving-the-ticket-form/
Does that coding work for you?
Brian
MemberI am glad to see you were able to figure it out.
I am going to go ahead and close this ticket. If you have a similar issue or another in the future, please do not hesitate to create a new ticket.
Thanks!
Brian
MemberHi,
Thanks for the interest in our plugins. I can answer your questions.
The iCal importer does not import RSS feeds and unfortunately, we do not have any feature to do that with out plugins.
Let me know if you have any follow up questions.
Thanks
-
AuthorPosts
