@microbia
14 years, 10 months ago
Hi all, I had the same problem when not using the BP standard theme, after reviewing the code I realized one thing was missing in the functions file of my theme, I included the following lines:
require_once( TEMPLATEPATH . ‘/_inc/ajax.php’ );
/* Load the javascript for the theme */
wp_enqueue_script( ‘jquery-livequery-pack’, get_template_directory_uri() . ‘/_inc/js/jquery-livequery.js’, array( ‘jquery’ ) );
wp_enqueue_script( ‘dtheme-ajax-js’, get_template_directory_uri() . ‘/_inc/js/ajax.js’, array( ‘jquery’, ‘jquery-livequery-pack’ ) );
and now autocomplete works! Not sure if this will fix your problem, but just in case…