Brad, I have also added fallback for form when JS/Ajax not work. try download from given link.
There are option for that in AnsPress option panel.
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
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
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.
Already answered here http://anspress.io/questions/question/adding-links-to-user-profile/
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 );