Errore with buddypress

Hello Luca, This issue was already fixed this morning but not sure if got published to wp.org or not. You can directly download it from GitHub.

There’s no email templates [4.1.0]

Same problem here.

Anspress Categories broken [4.1]

Same issue here. Now the widget does exactly the same as selecting a category inside a question (for anyone using the X Pro theme). I can’t find the line of code mentioned above, so cannot make the change.

No redirection after disabling some add-ons [4.1.0]

Yes, it’s fixed in the latest commit.

Anspress Categories broken [4.1]

Hello, I was dealing with the same issue. Opening ../categories/<category> would only show an empty page. My workaround: In /wp-content/plugins/anspress-question-answer/addons/free/category.php, replace: $category_id = sanitize_text_field( get_query_var( 'q_cat' ) ); with: $request_uri_path = explode( '/', wp_parse_url( sanitize_text_field( $_SERVER['REQUEST_URI'] ), PHP_URL_PATH ) ); $request_uri_path_count = count( $request_uri_path ); if( $request_uri_path_count == 0 ) { $category_id = 0; } else { $category_id = $request_uri_path[$request_uri_path_count – 1]; if( empty( $category_id ) ) { $category_id = $request_uri_path[$request_uri_path_count – 2]; } } Thanks, @awijasa

Show comments by default is not working [4.1.0]

Hello Guys, Comments will remain like this. Let me describe the reason for doing this. In the previous design, comments was below the post and it was ling great when there were 3 or 4 comments. But problem arises when we had a lot of comments. Apart from this we were unable to add comment pagination because it will not match the existing design. That’s why I had to use a model to improve UX.