Opened 2 months ago

Last modified 6 weeks ago

#23761 new defect (bug)

Empty header color after enabling header text via Customizer

Reported by: SergeyBiryukov Owned by:
Priority: normal Milestone: 3.6
Component: Appearance Version: 3.4
Severity: normal Keywords: reporter-feedback has-patch
Cc: kovshenin, agilexcmer, takashi@…

Description

Background: #23722

  1. Go to Appearance > Header, disable header text.
  2. Go to Customizer, enable header text.
  3. Go to Appearance > Header again. get_header_textcolor() will return an empty value.

Bundled themes handle this situation differently:

If you disable and re-enable header text on Appearance > Header screen, the correct color will be restored.

Attachments (3)

23761.empty-header-color.png (159.7 KB) - added by SergeyBiryukov 2 months ago.
23761.diff (661 bytes) - added by obenland 8 weeks ago.
23761.1.diff (897 bytes) - added by obenland 8 weeks ago.
Adds comment

Download all attachments as: .zip

Change History (10)

  • Cc kovshenin added
  • Cc agilexcmer added

This is for TwentyThirteen. In Line 217 of wp-admin/custom-header.php:

if ( isset( $_POST['text-color'] ) && ! isset( $_POST['display-header-text'] ) ) {
			check_admin_referer( 'custom-header-options', '_wpnonce-custom-header-options' );
			set_theme_mod( 'header_textcolor', 'blank' );
		} elseif ( isset( $_POST['text-color'] ) ) {
			check_admin_referer( 'custom-header-options', '_wpnonce-custom-header-options' );
			$_POST['text-color'] = str_replace( '#', '', $_POST['text-color'] );
			$color = preg_replace('/[^0-9a-fA-F]/', '', $_POST['text-color']);
			if ( strlen($color) == 6 || strlen($color) == 3 )
				set_theme_mod('header_textcolor', $color);
			elseif ( ! $color )
				set_theme_mod( 'header_textcolor', 'blank' );
		}

If the header text is disabled, WP sets the colour option to the string "blank" (and also for cases where the colour is invalid). This is how it knows whether you have the header text set or not.

When the customizer loads, the backend will provide it with an invalid color (string "blank") to begin with. I think this is filtered somewhere to then become an empty string.

Enabling the header in the customizer shows the header color option, which deceptively shows a colour. The actual colour is invalid (just a "#"), but then the browser applies the default colour for anchor tags. When you save the header in the customizer, it saves it with an empty string colour (you can check this in the database, serialized value theme_mods_twentythirteen in wp_options).

In the Appearance->Header, the colour is again invalid, but the header anchor tag has a default colour blue, which is what you see. The default colour for the colour-picker's anchor is different, which is why it shows something whitish.

I think the problem comes from the fact that we're re-using the header colour to determine if the header is enabled or not.

  • Keywords has-patch commit added
  • Keywords has-patch commit removed

Ignore. :) Wrong ticket.

  • Keywords reporter-feedback added

Can you test with patch on #22030 ? Could be related.

  • Keywords has-patch added

Patch adds a check for an empty color string and uses the default text color in that case.

Adds comment

  • Cc takashi@… added
Note: See TracTickets for help on using tickets.