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.
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
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(); }
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.
Hello, I will check this today.
Hello, I have added this to our roadmap.
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!!
even got the newest version from Github, still cannot upload images. Same behavior… Hope it can be fix soon. Thank you:)
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…