Nicholas

Forum Replies Created

Viewing 15 posts - 1 through 15 (of 32 total)
  • Author
    Posts
  • in reply to: Reccuring events redirecting to past event occurance #1158428
    Nicholas
    Participant

    I have narrowed it down to a conflict with WPML Multilingual CMS <https://wpml.org/&gt;. From a quick search on the support docs, it appears there are other known issues with WPML.

    Are you aware of a redirects issues related to what I’ve described?

    Thanks!

    in reply to: Follow Up: Widget calendar listing events with no result #1032954
    Nicholas
    Participant

    Thank you for the continued help. I tried the beta and it did not resolve this issue. I then discovered that the problem is related to a function conflict (see below)

    The purpose of this function was to remove events in the category “tech” from the main events page. My goal is to have a main events page that functions normally but excludes all events in the “tech” category. However, I need the mini calendar to be excluded from this function so that it shows only the category events when the filter is engaged.

    Is there another way to accomplish this? Or is there away to keep the function I have but fix it so that the filter works correctly on the mini calendar?

    // Removes categories "tech" from list and month views
    add_action( 'pre_get_posts', 'exclude_events_category' );
    function exclude_events_category( $query ) {
    if ( !is_singular( 'tribe_events' ) && $query->query_vars['eventDisplay'] == 'list' && !is_tax(TribeEvents::TAXONOMY) || $query->query_vars['eventDisplay'] == 'month' && $query->query_vars['post_type'] == TribeEvents::POSTTYPE && !is_tax(TribeEvents::TAXONOMY) && empty( $query->query_vars['suppress_filters'] ) || !is_page(3055)) {
    
    	$query->set( 'tax_query', array(
    
    		array(
    			'taxonomy' => TribeEvents::TAXONOMY,
    			'field' => 'slug',
    			'terms' => array('tech'),
    			'operator' => 'NOT IN'
    		)
    		)
    	);
    }
    return $query;
    }
    in reply to: Duplicate events #1027274
    Nicholas
    Participant

    Just wondering if there have been any updates? Any luck tracking down the issue?

    in reply to: Duplicate events #1020140
    Nicholas
    Participant

    Thank you for continuing to work on this to find a solution.
    I’ve consistently recreated the problem on the live site and my local version.

    1. Here is the ical address:
    http://www.omahype.com/api/v1/events/ical?api_key=73eb313df5c43a0b40ee5a5d5971126f6a10bf3704ae7bb9670889f0ccba826d91cb0866b80915089fe68a27a12ee43366b95d04686c8910272f966ac6cce3b7

    2. I have not seen examples that are different in any way AND considering it was reimporting EVERY event every time, I don’t think that is the issue

    3. This is a little difficult to confirm because the calendar we are pulling the events into is also being populated by other sources, mainly directly adding other events, but I have not found any exceptions. Will continue to check this and let you know if I find any exceptions.

    in reply to: Duplicate events #1019032
    Nicholas
    Participant

    This reply is private.

    in reply to: Duplicate events #1018738
    Nicholas
    Participant

    Hello,

    Has there been any updates to this issue?
    Thanks!

    Nicholas

    in reply to: Duplicate events #1013902
    Nicholas
    Participant

    No problem. What is the timeline on getting a fix for this. This is a pretty serious bug for a paid add-on. I have a client who I have already promised this feature to and having it work in this way is a pretty big issue. Thanks!

    in reply to: Duplicate events #1013900
    Nicholas
    Participant

    This reply is private.

    in reply to: Pagination not working (ajax/js conflict) #1012117
    Nicholas
    Participant

    Thanks for the help!
    And good move on removing the js dependencies. 😉
    Looking forward to that.

    in reply to: Related events aren't filtering by category #1009749
    Nicholas
    Participant

    That did it! Thank you!

    in reply to: Related events aren't filtering by category #1009493
    Nicholas
    Participant

    Thank you! Yes, I did find a theme conflict and the source was a bit of code I was using in my functions file. (see below)

    The purpose of this function was to remove events in the category “tech” from the main events page. My goal is to have a main events page that functions normally but excludes all events in the “tech” category. Then I want this separate page that includes only tech related events.

    Is there another way to accomplish this? Or is there away to keep the function I have but fix it so that the related posts feature works correctly on single tech events??

    // Removes categories "tech" from list and month views
    add_action( 'pre_get_posts', 'exclude_events_category' );
    function exclude_events_category( $query ) {
    if ( $query->query_vars['eventDisplay'] == 'list' && !is_tax(TribeEvents::TAXONOMY) || $query->query_vars['eventDisplay'] == 'month' && $query->query_vars['post_type'] == TribeEvents::POSTTYPE && !is_tax(TribeEvents::TAXONOMY) && empty( $query->query_vars['suppress_filters'] ) ) {
    
    	$query->set( 'tax_query', array(
    
    		array(
    			'taxonomy' => TribeEvents::TAXONOMY,
    			'field' => 'slug',
    			'terms' => array('tech'),
    			'operator' => 'NOT IN'
    		)
    		)
    	);
    }
    return $query;
    }
    in reply to: Related events aren't filtering by category #1009075
    Nicholas
    Participant

    No tags or categories used on the events that are appearing as “related events”

    in reply to: Widget calendar listing events with no result #1008297
    Nicholas
    Participant

    Ok! I’m glad to know it’s not just me.
    Is there any timeline on when that release would go live? Any fixes in the meantime?

    Thanks!

    in reply to: Widget calendar listing events with no result #1008291
    Nicholas
    Participant

    This reply is private.

    in reply to: Widget calendar listing events with no result #1008290
    Nicholas
    Participant

    The calendar has been installed for a while, but this is the first time the widget has been used.

Viewing 15 posts - 1 through 15 (of 32 total)