Barry

Forum Replies Created

Viewing 15 posts - 5,311 through 5,325 (of 17,936 total)
  • Author
    Posts
  • in reply to: Single Event quanitity 0 #824725
    Barry
    Member

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

    in reply to: Certain Category Not Excluding in tribe_get_events() #824606
    Barry
    Member

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

    in reply to: Can We Accept Payments? #824604
    Barry
    Member

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

    in reply to: Import taking into account custom fields #824601
    Barry
    Member

    Hi! 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
    Member

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

    in reply to: Multiple Views on Home Page #824591
    Barry
    Member

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

    in reply to: Full width calendar, sidebar with single events #824587
    Barry
    Member

    Hi! 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
    Member

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

    in reply to: Change the order of events #824580
    Barry
    Member

    Hi! 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
    Member

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

    in reply to: Payment Options #824572
    Barry
    Member

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

    in reply to: Calendar view and buy button #824569
    Barry
    Member

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

    in reply to: Known working Gift Certificate Extension? #824564
    Barry
    Member

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

    in reply to: Google Map Not Displaying on Event Detail Page #824561
    Barry
    Member

    Hi! 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
    Member

    Definitely.

    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?

Viewing 15 posts - 5,311 through 5,325 (of 17,936 total)