dogoodzilla
Forum Replies Created
-
Forum: Themes and Templates
In reply to: twenty eleven disable featured image in headerHave you tried disabling the header inage using the setting for it under
/wp-admin/themes.php?page=custom-header?I did that for a demo site and it removed the header image from Twenty Eleven. No need to create a child theme, even though child theme is preferred when making custom settings.
Forum: Themes and Templates
In reply to: single.php ignored – WP calls index.php inseatYou could work with references to other loops using
get_template_part:Add http://pastebin.com/jWk5BZJU to index.php and put your loop for single posts in a file that you name
loop-single.phpForum: Themes and Templates
In reply to: twenty eleven disable featured image in headerCreate a child theme where you copy header.php from Twenty Eleven. Then you remove the lines from header.php and can still enjoy all the other features in the parent theme. Check theme.fm/2011/07/how-to-create-a-child-theme-based-on-twenty-eleven-791/ for instructions.
Forum: Themes and Templates
In reply to: Images in sidebar menuIf you use the built in menu manager you can add a class to every menu item. Then you work with your CSS file to display an image in front of the corresponding menu item.
Forum: Themes and Templates
In reply to: Home Page titleI use WordPress SEO by Yoast to set the titles. You will need to modify your header.php according the the instructions in the plugin under the Titles tab.
Forum: Themes and Templates
In reply to: Display featured image based on widthNow I have something I think I can work with. Hopefully some of you fine individuals can enjoy this.
I took the
twentyten_header_image_widthand modified the width ( in functions.php) to the maximum width of the thumb that I use.I then added the if statement from the header in the Twenty Ten theme and added it twice (I have two featured image sizes here).
I changed the second statement a bit:
$image[1] >= HEADER_IMAGE_WIDTH )vs.$image[1] < HEADER_IMAGE_WIDTH )