Skip to:
Content
Pages
Categories
Search
Top
Bottom

Conflict with The Event Calender (Modern Tribe)


  • jfboisvert
    Participant

    @jfboisvert

    I just installed the latest version (2.5.8) on bbPress on a WordPress site where The Event Calendar plugins (vers. 4.0.7) was installed. After that, I wasn’t able to add or modify an event. I disabled bbPress, and then The Event Calendar works well as before.
    Does anayone khow about this problem ? I would like to keep using The Event Calendar but also start using bbPress.

    Thank you for your help!
    Jean-François Boisvert

Viewing 3 replies - 1 through 3 (of 3 total)
  • Bonsoir JF,

    First of all, please try to change your permalink settings (Settings > Permalinks) to plain and save. Then try the events calendar again.

    If that didn’t work, could you please try (if this makes sense to you):
    In Admin > Events > Settings > Community > Access Control, UNcheck the “Block access to WordPress Admin” and have all “Roles to block” UNchecked

    If that didn’t work, could you please try to copy this code into your functions.php and let me know if it fixed your issue ?

    function casiepa_pre_get_posts( $query ) {
        global $wp_the_query;
    
        if ( $query === $wp_the_query && $query->is_main_query() && is_array( $query->query_vars['post_type'] ) && in_array( 'forum', $query->query_vars['post_type'] ) ) {
            $query->query_vars['post_type'] = 'forum';
        }
    
        return $query;
    }
    
    add_filter('pre_get_posts', 'casiepa_pre_get_posts', 11);

    Please get back to us with some news.

    Pascal.


    jfboisvert
    Participant

    @jfboisvert

    Thank you Pascal for your answer.

    I tried your first and third suggestions, but they did not solve the problem.
    I did not try the second one, because I do not have the Pro version of The Events calendar.

    Then unfortunately I’m out of options, sorry.
    I suppose you tried already their forum ?

    And did you try to deactivate all other plugins except bbPress and your calendar ? Just to be sure it’s not something in another plugin ?

    Pascal.

Viewing 3 replies - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.
Skip to toolbar