I've been trying to get it to work all morning but I really don't know how to achieve this. The code I came up after reading the forum is this one:
function remove_thematic_actions() {
remove_action('thematic_header','thematic_access',9);
}
if(is_front_page()) { //also tried is_page_template('template-home-page.php'); since I'm working on my custom home
add_action('init','remove_thematic_actions');
}
This,... as logic as it may look ;D doesn't work. Anyone knows how to get this working?
Thanks!