I had cloudflare but it was causing some clashing with other plugins. I will re-acativate it now, but is there a reason recaptcha is not working with anspress?
I developed a filter which will make yoast seo breadcrumb work with anspress.. add_filter( 'wpseo_breadcrumb_links' , 'myYoastAnsPressBreadCrumb'); function myYoastAnsPressBreadCrumb($breadcrumb) { global $wp_query; $workBreadcrumb = $breadcrumb; $questionId = $wp_query->get('question_id'); if (!empty($questionId)) { // We are showing a question // Test to see if the current page in the breadcrumb is the AnsPress base page if (function_exists('ap_opt')) { $lastCrumb = array_pop($workBreadcrumb); if (is_array($lastCrumb)) { if (array_key_exists('id', $lastCrumb )) { if (ap_opt('base_page') == $lastCrumb['id']) { // Change the last crump id to point to the question $parentId = $lastCrumb['id']; $lastCrumb['id'] = $questionId; // Create a listing for the base_page $workBreadcrumb[] = array( 'text' => strip_tags( get_the_title( $parentId ) ), 'url' => get_permalink($parentId), 'allow_html' => true); // Add the question as the last crumb $workBreadcrumb[] = $lastCrumb; return $workBreadcrumb; } } } } } return $breadcrumb; }