Bryan

Forum Replies Created

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • Bryan
    Participant

    Same issue seen on two separate sits. Switching to List view as default as a work around.

    in reply to: How to preserve custom fields during a scheduled import #1254177
    Bryan
    Participant

    AndrĂ¡s,

    Thank you for the update. I look forward to the fix.

    Thanks,

    Bryan

    in reply to: How to preserve custom fields during a scheduled import #1252983
    Bryan
    Participant

    Hi Andras,

    Is there an update to this issue? I noticed that a recent release was pushed a few days ago (4.4.4); however, after grading, I still experience the same issue. I read that several synch issues were addressed in the fix, but it appears this one didn’t make the cut.

    Any update would be appreciated.

    Thanks,

    Bryan

    in reply to: How to preserve custom fields during a scheduled import #1227664
    Bryan
    Participant

    Thank you Andras.

    Would you also have them check the “Event Website” URL field? I noticed it too was overwritten. I would expect Google calendar fields (such as title, date, time, location) to be overwritten, but not Event Calendar specific fields.

    Thanks,

    Bryan

    in reply to: Previous month as well as 12 months ahead #1170968
    Bryan
    Participant

    Ah…..I’m starting to see the light. I made some assumptions that the ical link was hardcoded, not generated by a custom function. You know what they say about assumptions….

    Here’s what I currently have:

    add_action( ‘pre_get_posts’, ‘tribe_custom_month_time_range_ics_export’ );

    function tribe_custom_month_time_range_ics_export( WP_Query $query ) {
    if ( ! isset( $_GET[‘ical’] ) || ! isset( $_GET[‘year-feed’] ) ) {
    return;
    }

    $query->set( ‘eventDisplay’ , ‘custom’ );
    $query->set( ‘start_date’ , ‘now’ );
    $query->set( ‘end_date’ , ‘+ 365 days’ );
    $query->set( ‘posts_per_page’, -1 );
    }

    For giggles, I changed the start_date parm to ‘- 30 days’ and this appears to have solved my issue.

    Thank you for pointing me in the right direction.

    -Bryan

    in reply to: Previous month as well as 12 months ahead #1170560
    Bryan
    Participant

    BTW – if you want to re-title this ticket/topic/post, please do so. That way others can find it should they encounter this same issue. I tried, but I didn’t see where to make the change.

    in reply to: Previous month as well as 12 months ahead #1170555
    Bryan
    Participant

    Hi Cliff.

    Sorry about the RSS feed part – I was writing this while on a conference call. Never a good idea to multi-task.

    Your assessment of the issue is correct.

    The way it seems to work now, any past meeting is removed from my calendar. I’m fine with this; there’s no need to keep years worth of meetings. But the downfall to this is that right as the meeting is about to start, it’s removed from my iPhone calendar. I can only assume that my phone is doing a synch as I look at my calendar. I’ve looked for ways to tell it not to do this, but no luck. I was hoping the iCal feed could give a list of meetings that happened in the past (maybe last 30 days….even last 7 days would be fine) plus the events in the future. That way the event isn’t removed right as it starts.

    Thanks,

    Bryan

Viewing 7 posts - 1 through 7 (of 7 total)