andi10
Forum Replies Created
-
Forum: Themes and Templates
In reply to: fastfood theme missing header text after upgradeFor anyone using the dkret3 theme the following works, edit library/functions/core.php under the dkret3 theme directory. Find the line in function ‘dkret_custom_header’:
<?php if ( get_theme_mod(‘header_textcolor’) == ‘blank’ || defined( ‘NO_HEADER_TEXT’ ) ) : ?>And replace with (i.e. remove check for NO_HEADER_TEXT):
<?php if ( get_theme_mod(‘header_textcolor’) == ‘blank’ ) : ?>This isn’t the right answer but is a workaround! It’s getting late but to me it looks like NO_HEADER_TEXT is getting defined differently in WP3.4 which causes dkret3 to add the styling to hide the title and description text. Hopefully someone more familiar with WP can look into this more.
Forum: Themes and Templates
In reply to: fastfood theme missing header text after upgradeFurther investigation leads to the following post:
http://wordpress.stackexchange.com/questions/55409/use-add-theme-support-instead-of-add-custom-image-header-in-wordpress-3-4It looks like a change is needed to the themes to make them compatible with WP 3.4 or maybe WP 3.4 needs to have a fix to ensure backwards compatibility works fully.
Forum: Themes and Templates
In reply to: fastfood theme missing header text after upgradeI am also seeing this problem, I’m also using the dkret3 theme, on examining the page source for the site I found this:
#site-title,
#site-description {
display: none;
}It appears in the <style> tag near the top of the source (<head> section) which at least tells us why the title and description are not shown. They do appear in the HTML further down. It looks like this part of the page is generated in the call ‘wp_head()’. So far I’m not sure what is causing this bit of CSS to be generated and whether it is the dkret3 theme or WP – suspect it is WP.