Ok. I try to find things.
Wrong path to custom header pics when using a child theme
In custom-header.php there is:
'default-image' => '%2$s/images/headers/Tiny-Framework-header-01.jpg',
This points to the thema path. Acually to the child now. But there are no images there.
So it should be (on line 23)
'default-image' => '%s/images/headers/Tiny-Framework-header-01.jpg',
and when someone wants to use an other set then the defaults, they should write a function in the theme functions.php.
In the same custom-header.php file the same corrections should be done to the lines 49-65:
register_default_headers( array(
'First' => array(
'url' => '%2$s/images/headers/Tiny-Framework-header-01.jpg',
'thumbnail_url' => '%2$s/images/headers/Tiny-Framework-header-01-thumbnail.jpg',
'description' => esc_html_x( 'First', 'header image description', 'tiny-framework' )
),
'Second' => array(
'url' => '%2$s/images/headers/Tiny-Framework-header-02.jpg',
'thumbnail_url' => '%2$s/images/headers/Tiny-Framework-header-02-thumbnail.jpg',
'description' => esc_html_x( 'Second', 'header image description', 'tiny-framework' )
),
'Third' => array(
'url' => '%2$s/images/headers/Tiny-Framework-header-03.jpg',
'thumbnail_url' => '%2$s/images/headers/Tiny-Framework-header-03-thumbnail.jpg',
'description' => esc_html_x( 'Third', 'header image description', 'tiny-framework' )
),
) );
should be replaced with:
register_default_headers( array(
'First' => array(
'url' => '%s/images/headers/Tiny-Framework-header-01.jpg',
'thumbnail_url' => '%s/images/headers/Tiny-Framework-header-01-thumbnail.jpg',
'description' => esc_html_x( 'First', 'header image description', 'tiny-framework' )
),
'Second' => array(
'url' => '%s/images/headers/Tiny-Framework-header-02.jpg',
'thumbnail_url' => '%s/images/headers/Tiny-Framework-header-02-thumbnail.jpg',
'description' => esc_html_x( 'Second', 'header image description', 'tiny-framework' )
),
'Third' => array(
'url' => '%s/images/headers/Tiny-Framework-header-03.jpg',
'thumbnail_url' => '%s/images/headers/Tiny-Framework-header-03-thumbnail.jpg',
'description' => esc_html_x( 'Third', 'header image description', 'tiny-framework' )
),
) );
Next I will try to find out why the menu is a ‘list of text’. (this happens on all servers I tried with php7)