For some reason, my logo doesn’t seem to be showing up in the child theme? Not sure why it is not working
I’m using a theme that moves the menu below the logo - is the theme wrong? it was working until yesterday, when the activello theme became updated
movin
2
Hi @mphhelp,
Sorry to hear of the problem you are having.
To resolve the issue try changing the following code in the header.php file of your child theme as displayed below.
Before :
if( $show_logo && $logo ) {
echo wp_get_attachment_image($logo, array(9999, 9999));
}
After :
if( $show_logo && has_custom_logo() ) {
the_custom_logo();
}
Best Regards,
Movin