Brian

Forum Replies Created

Viewing 15 posts - 1,546 through 1,560 (of 11,256 total)
  • Author
    Posts
  • in reply to: Event Calendar Link #1067706
    Brian
    Member

    Hi,

    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.

    The Events Calendar

    Thanks again!

    in reply to: Invoicing #1067703
    Brian
    Member

    Hi,

    Thanks for using our plugins. I can help out here.

    We have this guide to creating order invoices from your account:

    Finding Order Invoices

    Cheers

    Brian
    Member

    This reply is private.

    in reply to: iCal Importer #1067684
    Brian
    Member

    The 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.

    Brian
    Member

    Hi 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

    in reply to: Problem with iCal export and Multiple Categories visible #1067680
    Brian
    Member

    So 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

    Brian
    Member

    I 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!

    in reply to: Help with tribe_events_query_posts_orderby filter #1067463
    Brian
    Member

    Great, 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!

    in reply to: The Events Calendar Category Colors are not showing up #1067461
    Brian
    Member

    Ok thanks.

    in reply to: QR Code scanned multiple times?? #1067459
    Brian
    Member

    Hi Darion,

    Yes if you update the plugin you would have to add back the coding until the feature becomes part of the plugin.

    in reply to: Problem with iCal export and Multiple Categories visible #1067327
    Brian
    Member

    The 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.

    in reply to: Community Events vs. 3.12 brings down site #1067326
    Brian
    Member

    Great, 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!

    in reply to: Moving the Eventbrite Tickets box #1067325
    Brian
    Member

    Oh 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?

    in reply to: Eventbrite tickets not appearing in events #1067133
    Brian
    Member

    I 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!

    in reply to: iCal Importer #1067130
    Brian
    Member

    Hi,

    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

Viewing 15 posts - 1,546 through 1,560 (of 11,256 total)