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.
Bonjour Ridan, Difficile à dire sans voir votre site mais j’ai l’impression que la fenêtre pop-up passe sous votre en-tête. Vous pouvez ajuster la position du pop-up via du css. Sur mon site, je l’ai descendue de 150 px : #anspress .ap-modal-body { margin: 150px auto 0 auto; } J’espère que ça pourra vous aider. 😉
Hello Nico, A fix has been made for this bug. You can try it from GitHub. Thanks for reporting.
Hello Nico, When profile addon is not active then all user profile is links to default WordPress author page. I tested it and its working as expected.
Thanks for reporting. Its fixed now.
This issue is still continue for v4.1.0 too. Only reputation re-counting can go to 300.
Hello, I just fixed this issue. Please download fixed version from here: https://github.com/anspress/anspress/archive/master.zip and manually upload to wp-content folder/plugins/anspress-question-answer.