Reply To: Logo missing since update

Home Forums Support Logo missing since update Reply To: Logo missing since update

Home Forums Support Logo missing since update Reply To: Logo missing since update

#194417
Tom
Lead Developer
Lead Developer

Get rid of this:

add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' );
function theme_enqueue_styles() {
    wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/wp-content/themes/generatepress/style.css' );
    wp_enqueue_style( 'child-style',
get_stylesheet_directory_uri() . '/wp-content/themes/generatepress-child/style.css',
array(‘parent-style’)
);
}

GP does that for you.

Do you have any template files added to your child theme? header.php specifically?