I seeļ¼Thank you.
Hello Siamion, Thanks for letting us know. I am checking this issue. Are you using lateest version or unreleased version (from GitHub)?
Hello, AnsPress already have it. But since version 4.1.x suggestion appears only after you type anything in tags field.
Hey mark, I haven’t used mycred so I am not sure. I think you can get help by contacting mycred author.
Hello, AnsPress does not integarte with mycred by default. You can see all reputation of AnsPress in user profile of AnsPress.
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(); }