@rhcburg
Since storefront already have a built-in function to add a logo, we are retiring this plugin.
To add a logo just open the customizer, you can find it in your dashboard > Appearance > Customize https://prntscr.com/
To add a tagline like this https://prntscr.com/l170o8
You can add this to your functions.php just change the url path to your logo by editing this line src=”https://yoururl.com/youlogo.png”
/** STOREFRONT CUSTOM LOGO -START **/
add_action( ‘init’, ‘storefront_custom_logo’ );
function storefront_custom_logo() {
remove_action( ‘storefront_header’, ‘storefront_site_branding’, 20 );
add_action( ‘storefront_header’, ‘storefront_display_custom_logo’, 20 );
}
function storefront_display_custom_logo() {
?>
” class=”site-logo-link” rel=”home”>
” /><p style=”float:left;margin-top: 3%;” class=”site-description”><?php bloginfo( ‘description’ ); ?></p>
<?php
}
/** STOREFRONT CUSTOM LOGO -END **/