Just Isn’t working (but plugin looks great!)

Brad, I have also added fallback for form when JS/Ajax not work. try download from given link.

Sorting by alpha order on categories

There are option for that in AnsPress option panel.

Where Is the option panel and theme color and customizations in AnswerBox?

No AnswerBox won’t have option panel as it a starter theme. But we are working on AnswerBox-V2 which will release soon have all the features. So kindly wait a little if you need option panel. Thanks

Just Isn’t working (but plugin looks great!)

Its look like jQuery.form plugin is loading after ap-script. Here I have made a fix, please download manually from here: https://github.com/anspress/anspress/archive/master.zip

What is the best solution when I have ANS and BP installed on my site?

If you wish to use BP with AnsPress then you can disable AnsPress profile. This will let you use BP profile with all AnsPress features. Read this for more info: How to disable AnsPress user profile Cheers.

How do you add Logout?

Already answered here http://anspress.io/questions/question/adding-links-to-user-profile/

WP Search

In your theme function.php add this: /** * exclude question and answer from main WP search * @author Rahul Aryan <[email protected]> */ function my_exclude_cpt_from_search() { global $wp_post_types; if ( post_type_exists( 'question' ) ) { // exclude from search results $wp_post_types['question']->exclude_from_search = true; } if ( post_type_exists( 'answer' ) ) { // exclude from search results $wp_post_types['answer']->exclude_from_search = true; } } add_action( 'init', 'my_exclude_cpt_from_search', 99 );