I know CSS and a little PHP but this shit is confusing. If I want to do something extremely simple such as remove the blog title and description, how can I do this with my 'child theme'? I completely did an overhaul on an older site with this template but didn't use a child theme and just edited everything on the original files.. which worked great.
Anyway, I copied over the example child theme that was provided and renamed it to 'my blog theme v1'. I then threw in the functions.php from the parent theme.
This (functions.php) is where I make my changes, correct? I've tried throwing in some 'remove' code and can't even update the page without it giving me some header error.
For example:
// remove thematic_access()
function remove_access() {
remove_action('thematic_header','thematic_access',9);
}
What is 'access', is it a 'hook'? Or a 'filter'?
Ok, so 'remove_access' removes whatever 'access' is. How about 'remove_action'? Something is removed twice?
And what does '9' mean?
I'm not sure why there isn't a simple description page on what this all represents.
Thanks.