Forum Replies Created
-
AuthorPosts
-
Barry
MemberHi! It’s been a while so I’m going to go ahead and close this thread. If we can help with anything else, though, please don’t hesitate to create new threads as needed. Thanks!
October 21, 2014 at 8:40 am in reply to: Certain Category Not Excluding in tribe_get_events() #824606Barry
MemberHi! It’s been a while so I’m going to go ahead and close this thread. If we can help with anything else, though, please don’t hesitate to create new threads as needed. Thanks!
Barry
MemberHi! It’s been a while so I’m going to go ahead and close this thread. If we can help with anything else, though, please don’t hesitate to create new threads as needed. Thanks!
Barry
MemberHi! It’s been a while so I’m going to go ahead and close this thread. If we can help with anything else, though, please don’t hesitate to create new threads as needed. Thanks!
October 21, 2014 at 8:38 am in reply to: Moving Personal License into EXISTING Business License with open URL #824596Barry
MemberHi! It’s been a while so I’m going to go ahead and close this thread. If we can help with anything else, though, please don’t hesitate to create new threads as needed. Thanks!
Barry
MemberHi! It’s been a while so I’m going to go ahead and close this thread. If we can help with anything else, though, please don’t hesitate to create new threads as needed. Thanks!
Barry
MemberHi! It’s been a while so I’m going to go ahead and close this thread. If we can help with anything else, though, please don’t hesitate to create new threads as needed. Thanks!
October 21, 2014 at 8:37 am in reply to: Upgrade to 3.8 resulted in "An automated WordPress update has failed to complete #824584Barry
MemberHi! It’s been a while so I’m going to go ahead and close this thread. If we can help with anything else, though, please don’t hesitate to create new threads as needed. Thanks!
Barry
MemberHi! It’s been a while so I’m going to go ahead and close this thread. If we can help with anything else, though, please don’t hesitate to create new threads as needed. Thanks!
October 21, 2014 at 8:36 am in reply to: Facebook Event didn’t import event time, import as allday event #824577Barry
MemberHi! It’s been a while so I’m going to go ahead and close this thread (though we’ll re-open and post an update as work on the bug progresses). If we can help with anything else, though, please don’t hesitate to create new threads as needed. Thanks!
Barry
MemberHi! It’s been a while so I’m going to go ahead and close this thread. If we can help with anything else, though, please don’t hesitate to create new threads as needed. Thanks!
Barry
MemberHi! It’s been a while so I’m going to go ahead and close this thread. If we can help with anything else, though, please don’t hesitate to create new threads as needed. Thanks!
Barry
MemberHi! It’s been a while so I’m going to go ahead and close this thread. If we can help with anything else, though, please don’t hesitate to create new threads as needed. Thanks!
Barry
MemberHi! It’s been a while so I’m going to go ahead and close this thread. If we can help with anything else, though, please don’t hesitate to create new threads as needed. Thanks!
October 21, 2014 at 8:24 am in reply to: Exclude recurrent events from search results except from first instance #824534Barry
MemberDefinitely.
There are actually a couple of things at play: one is that I was wrong (apologies!) and the query var is indeed tribeHideRecurrence. The other is that the logic which makes use of this will not actually run in the context of a search query.
You may be able to trigger it to do so, though, by setting an additional property of the query object:
add_filter( 'pre_get_posts', 'search_loop_control_recurring_events' ); function search_loop_control_recurring_events( WP_Query $query ) { if ( ! is_admin() && $query->is_main_query() ) { if ( $query->is_search ) { $query->set( 'tribeHideRecurrence', true ); $query->tribe_is_multi_posttype = true; } } }Does that help you out here at all?
-
AuthorPosts
