This is actually very simple. In your custom_functions.php file add the following code.
add_theme_support( 'nav-menus' );
remove_action('thesis_hook_before_header', 'thesis_nav_menu');
add_action('thesis_hook_before_header', 'wp_nav_menu');
Simple, right?
Now for the error you get when running WordPress 3.0 and try to access the Custom File Editor in Thesis. It should say something like:
Fatal error: Call to undefined function use_codepress() in /home/your_directory/public_html/wp-content/themes/thesis/lib/admin/admin.php on line 42
For now to fix this just comment out line 42 in your /lib/admin/admin.php file like so. (by adding // in front of line 42)
// if (use_codepress()) add_action('admin_print_footer_scripts', 'codepress_footer_js');
![]()
No more error!
Have fun with WordPress 3.0 and Thesis.
Not sure what Thesis is? Check out http://diythemes.com
Pingback: Wordpress 3.0 Errors, Issues, Problems And The Solutions!