I am developing my first child theme for Thematic, so I'm very newbie. I'm able to find all answers on my questions by searching here and on internet, however I couldn't find an answer on this. But if it has been asked before, then I am very sorry for wasting your time.
As the title of this topic says, I want to move the thematic_page_title below thematic_navigation_above everywhere they appear together (archive page, author page, category page, search result page, tag page).
I think that I've to remove the page_title first and then add it below navigation_above again? The following will remove the page_title, but I don't know what's the next step.
function remove_page_title(){
$content = '';
return $content;
}
add_filter('thematic_page_title', 'remove_page_title');
The reason why I want it is because I've hooked breadcrumbs into navigation_above, and I want it to appear at the top of each page. It looks perfect in single posts and pages as they have nothing above navigation_above (no page_title).
Thank you for reading, I'm looking forward to your replies!