Has Anyone Used AnsPress in Conjunction with the Swiftype WordPress Search Plugin?

Swiftype looks interesting (I have been looking for the site like this). Will check ad let you know.

removing cover photo

add this to styles.css: .ap-user-cover{ display:none; }

Error in Buddypress Profile

I did some research and was able to fix it I believe… It removes the errror and it is not by turning off one of the E-STRICT items in your php… From what I read it has to do with new PHP rules needing to add a new std class to instantiate an object… so it throws the warning… on the new PHP… old PHP you could code that way…   so here is the fix that worked for me… Goto that line of code on 230 and replace it with this adding this code here: $wp_query->queried_object = new stdClass(); above line 230… which is this code: $wp_query->queried_object->post_title = ap_page_title();   * Remove some unwanted things from wp_head */ public function remove_head_items($WP) { global $wp_query; if ( is_anspress() ) { remove_action( 'wp_head', 'rsd_link' ); remove_action( 'wp_head', 'wlwmanifest_link' ); remove_action( 'wp_head', 'adjacent_posts_rel_link_wp_head', 10, 0 ); remove_action( 'wp_head', 'rel_canonical' ); remove_action( 'wp_head', 'wp_shortlink_wp_head', 10, 0 ); remove_action( 'wp_head', 'feed_links_extra', 3 ); remove_action( 'wp_head', 'feed_links', 2 ); $wp_query->queried_object = new stdClass(); $wp_query->queried_object->post_title = ap_page_title(); } }   It worked for me…  Hope it helps

Default cover photo?

Try this: https://anspress.io/questions/question/change-default-cover-photos/

2.4 Update Comment Problem

comments not work with the7 theme and I see this log: PHP Fatal error: Call to undefined function presscore_get_button_html() in /home/shivahos/domains/shivahost.net/public_html/wp-content/themes/dt-the7/functions.php on line 1141

Blank page upon clicking on question

A blank page is most of the times some php fatal error. I would take a wild guess that you have “out of memory” error. ENABLE WordPress debug and check.

Strange reapeating “best answers”

Did you used [anspress] shortcode inside answer? Have you done any customization or overriding?

AskBug – WordPress theme released

good job guys

User don’t be subscribed question after answer

Its not required to subscribe by default now. If any activity is made on question, question author will get notification for all. hence its not required to subscribe by default.

Question count in categories

This will be fixed in upcoming release.