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.
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.