Disable sf-menu (superfish dropdown menu) for Thematic theme

Just put the code below at the bottom of your functions.php file: Code: // Filter away the default scripts loaded with Thematic function childtheme_head_scripts() { // Abscence makes the heart grow fonder } add_filter(‘thematic_head_scripts’,’childtheme_head_scripts’);

How to remove front page title for Thematic theme in WordPress?

Have you ever wanted to remove the title only for front page in WordPress? Are you using Thematic theme? Than I have good news for you. Use this function to remove the title only on the first page of your Thematic theme in WordPress: Code: function remove_front_pagetitle($posttitle) { if ( is_front_page() ) { $posttitle = … Read more