Links on category page are not working – new install

Hello, You dont need to install Categories for AnsPress plugin as its depecated and categories are avilable as an iddon in AnsPress. Just go to Wp-Admin->AnsPress->Addons and then enable addon. Make sure to set pages if required.

Preventing users from answering their own questions

I think I found the answer   OP: Original poster/asker. Enabling this option will prevent users to post an answer on their question.   in user access controls

Use WP_Query to get list of questions with a certain tag

Hello, it is possible! To show questions from the category use: $query = new WP_Query( array( ‘post_type’ => ‘question’, ‘question_category’ => ‘category-slug’, ) ); while ( $query->have_posts() ) { $query->the_post(); the_title(); } To show questions from the tag use: $query = new WP_Query( array( ‘post_type’ => ‘question’, ‘question_tag’ => ‘tag-slug’, ) ); while ( $query->have_posts() ) { $query->the_post(); the_title(); }

How to deal with Yoast SEO

I use anspress  with yoast  on website https://povestka.by. there are no problems   there is a widget that allows you to ask a question from the sidebar.

Privacy issue on profile pages

Hello, I will check this today.

Consider adding an option to remove username link – 404 pages

Hello, I have added this to our roadmap.

Unable to set AnsPress capabilities for bbPress roles

I have the same issue with a custom role, ¿Have you been able to resolve the problem? Could you tell me how resolve the issue or a workaround please? Thank you very much in advance!!

Image upload error with anspress

even got the newest version from Github, still cannot upload images. Same behavior… Hope it can be fix soon. Thank you:)

Image upload error with anspress

When put a local image in the texarea, I got “POST /wp-admin/admin-ajax.php 500 (Internal Server Error)” in my console pannel. And the Post Answer button keeps showing the loading icon…