Hi and thanks for the response! The domain is: https://www.ionizationlabs.com
As per the logo, it would be useful to know exactly what lines on which the instances mentioned below are found.
“
How to fix the logo issue in ResponsiveBoat when using Zerif Pro
If you are using ResponsiveBoat, one of our child themes for Zerif Lite, but you upgraded to Zerif Pro you may experience some issues with the logo. We had some changes done in Zerif Pro, to use the core WordPress logo option, and unfortunately, that is interfering with ResponsiveBoat.
As many of our users have changed the files of the child theme, updating it, without any backup means losing the changes. This is why we can’t update the child theme with this fix.
To have the logo back on your site, you can do this small change in the ResponsiveBoat theme files:
From the main folder of the child theme, open the header.php file, look for this line:
$zerif_logo = get_theme_mod(‘zerif_logo’);
and replace them with this lines:
$logo = get_theme_mod ( ‘custom_logo’ );
if ( ! empty( $logo ) ) {
$zerif_logo = wp_get_attachment_image_url( $logo, ‘full’ );
}
Make sure you replace all the occurrences of the first line as it appears more than once in the header.php file. Then save the file.”