Hi all
I am new to child themes and wordpress themeing and themshaper has been an excellent resource. I am trying to remove my sidebar from my child theme and replace with content.
What I gather is the best way to do it is to use a function to remove the sidebar.
function remove_sidebar() {
remove_action('thematic_sidebar');
}
add_action('init','remove_thematic_sidebar');
add_action('thematic_sidebar');
Then place content back in to this section with
function remove_sidebar()
{?>
<div class="about me"><h2>about me</h2><p>blah blah blah</p></div>
<div class="skills"><h2>about me</h2><p>blah blah blah</p></div>
<?php }
add_filter('remove sidebar');
I know most of the code with be wrong (gave it my best shot) but am I going down the right lines?
thanks