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.

We can not close the comments

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

Anspress styles are not loaded on question pages. [4.1.0]

Hello Nico, A fix has been made for this bug. You can try it from GitHub. Thanks for reporting.

There should actually be no linked author when the Author Page addon is not active.

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.

There are absolute xamp2 urls written in the souce maps for the scss. [4.1.0] minor.

Thanks for reporting. Its fixed now.

Re-counting doesn’t work

This issue is still continue for v4.1.0 too. Only reputation re-counting can go to 300.

4.1.0 Theme error

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.