While a bit late, we finally managed to get all Child Themes that are free for download updated to work with the latest Thematic (# Version: 0.9.7.7).
Early Morning, Street and Byty now make use of the WordPress 3.0 menu system, while Commune now makes use of the Featured thumbnail image that comes with WordPress (no more category images that weren’t working anyway) and we updated the menu to work with wp_nav_menu just like the rest of the themes.
We have plans for some new Child Themes in the near future so please stay tuned.
Related Articles
Green anyone? Try Commune – Thematic Child Theme!
Update 11.17.2010 The category image was removed and all thumbnails are now created using the Featured Image default functionality. If no Featured Image is added a default image appears in place. Simply put I have been lazy lately. I know this isn't the best way to sell my self but a little bit of honesty […]
Continue ReadingFuture Child Themes for Thematic in the works
Spring is at it's end and makes room for a promising Summer. Finishing the new design was a fulfilling moment for me. When you put so much effort into something, your personal expectations are always high. Building something for myself and things are prone to be problematic. In the initial stages nothing really feels right […]
Continue ReadingWordPress Developer Tools
During the last 3 years while providing web-design and development solutions to our clients over at Reflection Media, we're tried our best to optimize our processes and development time by reusing code, creating a database of often used code snipets and constructing generalist plugins when possible. While this didn't always work out as expected, we've […]
Continue Reading
Just found your “early morning” child theme for Thematic. I have a question –
I have chosen a Page to be a static front page and I’m using a wide width page template (no sidebar). I would like to remove the Page title from this front page but can not figure out how to do it.
I was able to do it using the basic “sample child theme” provided by Thematic using this inserted into the functions file:
function remove_postheader_posttitle($title) {
if (is_front_page()) {
return (”);
} else {
return ($title);
}
}
add_filter(‘thematic_postheader_posttitle’, ‘remove_postheader_posttitle’);
I tried inserting it into the functions file with “Early Morning” but it does not remove the page title. Obviously the functions in this file do something that overrides this.
I am teaching myself how to modify wordpress themes and do not really know php – but I tend to learn by poking about until it works and reading what I can find about how things work. So I apologize for my perhaps naive question – but appreciate the help in advance!
The simplest way to do it is using CSS to hide the page title for that page:
.home .entry-title {display:none;}