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.
Same problem here.
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.
Yes, it’s fixed in the latest commit.
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
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.