Hi there,
I have some seemingly simple code that I just can't get to work.
I want to remove the navigation on a statice home page.
Here is my code:
function remove_home_nav() {
if (is_home() || is_front_page()) {
remove_action('thematic_header','thematic_access',9);
}
}
add_action('init','remove_home_nav');
This should work, right? I've tried lots of little tweaking but I feel like I'm missing something here..