Stephen Chuchel

Forum Replies Created

Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • in reply to: WPML URL translation resulting in 404 #1169913
    Stephen Chuchel
    Participant

    Great, thanks very much for the update!

    in reply to: WPML URL translation resulting in 404 #1153291
    Stephen Chuchel
    Participant

    Hi,

    I noticed that the latest update to plugins (4.2.5 and Pro 4.2.4) fixed the issue on our staging site. But the production site is still having the problem. All active plugins are the same. I have re-saved permalinks and re-saved WPML language settings. Were there DB changes that could have run on our staging site that did not run on production?

    Thank you.

    in reply to: WPML URL translation resulting in 404 #1150688
    Stephen Chuchel
    Participant

    Hi, is there any news on this? The bug is currently making it impossible for users in other languages to browse through events on our website.

    Thank you!

    in reply to: WPML URL translation resulting in 404 #1143105
    Stephen Chuchel
    Participant

    Thank you for the reply. Look forward to seeing the fix in future release soon!

    in reply to: Can't Select "pm" for start time #166332
    Stephen Chuchel
    Participant

    Wonderful…

    in reply to: Get Start Date of Next Recurring Event #28462
    Stephen Chuchel
    Participant

    I guess so.. On another not, it’d be super handy if once you logged in here to post a reply it would redirect you back to the thread you were viewing.

    in reply to: Get Start Date of Next Recurring Event #28358
    Stephen Chuchel
    Participant

    Yeah, the context is probably just public, because scheduled tasks run when visitors come to your site. But just to be safe, and for testing purposes I added this line:
    if ( ! has_action('parse_query', array('TribeEventsQuery', 'setupQuery')))
    {
    add_action('parse_query', array($this, 'tribe_setup_query'), 0);
    }

    Which basically copies the setupQuery function without the is_admin() or any other checks.

    in reply to: Get Start Date of Next Recurring Event #28349
    Stephen Chuchel
    Participant

    Alright. I just wanted to see if there were another alternative or shortcut within the plugin already. Thanks.

    in reply to: Get Start Date of Next Recurring Event #28341
    Stephen Chuchel
    Participant

    Because, I’d expect that to return events after today, that have the correct event date, but they don’t when is_admin() is true.

    in reply to: Get Start Date of Next Recurring Event #28340
    Stephen Chuchel
    Participant

    So you’re saying that tribe_get_events(‘eventDisplay=upcoming&posts_per_page=-1′) isn’t useful in this case?

    in reply to: Get Start Date of Next Recurring Event #28337
    Stephen Chuchel
    Participant

    Yeah sorry, I didn’t notice multiple _EventStartDate entries. But what I noticed is that when I grab all the meta, there is only one _EventStartDate which is different than both the post_date, and the EventStartDate property that is returned with event post objects on the frontend of the website. So I’m not sure where the conversion is happening to get the next recurring date is? I ended up copying the tribe query filter setup function into my own class to be used on the backend, so that EventStartDate would be returned with the post object.

    in reply to: Event Categories Not Showing Correctly #14591
    Stephen Chuchel
    Participant

    Oh, figured it out. It was a template issue. Thanks. I had something similear to:

    if (is_archive() OR is_search())
    {
    the_excerpt();
    }
    else
    {
    the_content();
    }

    So after the upgrade it was falling into that “if” block and only outputting the excerpt (stripping all HTML). I changed the “if” to:
    if ((is_archive() OR is_search()) AND ! is_tax('tribe_events_cat')) and it works correctly now.

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