how do i have the same quick tags?

I see,Thank you.

Email notification about editing the question

Hello Siamion, Thanks for letting us know. I am checking this issue. Are you using lateest version or unreleased version (from GitHub)?

how do i have the same quick tags?

Hello, AnsPress already have it. But since version 4.1.x suggestion appears only after you type anything in tags field.

mycred vote hook

Hey mark, I haven’t used mycred so I am not sure. I think you can get help by contacting mycred author.

mycred and anspress integration

Hello, AnsPress does not integarte with mycred by default. You can see all reputation of AnsPress in user profile of AnsPress.

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(); }