hi @rhondasellers, I can see alogo on your site. I that a different one from what you have set? are you able to give us temporary logins for your site?
Hi,
I just updated all of my plugins and my logo has also disappeared. When I disable Storefront Header Picker v1.0.2 also by wooassist it reappears but some of the layout is really bad. I saw in another thread that you said you tested it with a clean install. Is it tested with your other plugins? I’m using
Storefront Footer Text
Storefront Header Picker
Storefront Site Logo (Version 1.2.3)
Storefront Top Bar
from you.
Thanks
Rich
Hi,
if I comment out the lines (214+) it works again. There isn’t any code within this IF clause which appears odd to me. Would love a reply as soon as possible.
` //if ( is_plugin_active( ‘storefront-header-picker/storefront-header-picker.php’ ) ) {
//}else{
-
This reply was modified 7 years, 10 months ago by
rhcburg.
Hi @wooassist
would love an answer on this topic.
Thanks
Rich
@rhcburg, sorry for the late reply, we are looking into this now. We will update you of our findings. Thanks.
@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 http://prntscr.com/
To add a tagline like this http://prntscr.com/l170o8
You can add this to your functions.php just change the url path to your logo by editing this line src=”http://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 **/