Unfamiliar with bbPress forums so forgive me if this has been answered elsewhere; I couldn't find an answer.
Fresh install of Thematic on Wordpress 3.3Beta2 gave the following error:
"Notice: wp_enqueue_script was called incorrectly. Scripts and styles should not be registered or enqueued until the wp_enqueue_scripts, admin_enqueue_scripts, or init hooks."
Following the instructions at http://codex.wordpress.org/Function_Reference/wp_enqueue_script
I replaced "wp_enqueue_script('jquery');" on line 80 of the functions.php with the following:
function my_scripts_method() {
// register your script location, dependencies and version
wp_register_script('custom_script',
get_template_directory_uri() . '/js/custom_script.js',
array('jquery'),
'1.0' );
// enqueue the script
wp_enqueue_script('custom_script');
}
add_action('wp_enqueue_scripts', 'my_scripts_method');
I'm new to Thematic and I just wanted to confirm with someone that this will work without messing anything up down the road.