• Hi everyone!

    I would like to upload a logo instead of title. The “Personalize” tab doesn’t include this option…

    Where should I change this?

    Thank you!

Viewing 12 replies - 1 through 12 (of 12 total)
  • Hi aymara,

    I have the same problem now.

    There used to be a option that said “logo” under Title and Tagline option when “customising” the theme but after I updated WP to 4.1 that option just disappeared…

    So might be some new bug?

    We will have to wait I guess…

    Thread Starter aymara

    (@aymara)

    Is there a “manual” fix for this?

    Actually I fixed mine yeah. But it is a bit unorthodox haha.

    Like I said I do see the Logo tag when customising but only for a second and then it dissapears.

    So after I pressed “Customise” I instantly stop loading the page when I see the logo tab appear. Could open the logo tab then and uploaded my logo and it works lol.

    I’m using Chrome if that has anything to do with it and I don’t have the fastest internet in case yours loads too fast.

    Hope it works for you too.

    Hello everybody!

    I have the same problem…I have installed today this theme and I am not able to change the logo ??

    Thank you MrMischa but my internet connection is fast and I can not stop the tab while loading.. any other suggestion? anyone knows whether they planned to fix this bug soon?

    Thanks!!

    Same problem for me, and MrMischa’s fix didn’t work for me. As soon as I select the image, the add logo option disappears and the logo doesn’t not get put into place.

    I just returned to version 4.0.3. Its ok.

    Open Your editor, search on header.php on the right.
    When You click it, use ctrl+F to find this on the script:

    <h1 id=”site-title” role=”logo”>
    <a.>” title=”<?php echo esc_attr( get_bloginfo( ‘name’ ) ); ?>”>
    <?php if ( get_theme_mod( ‘bearded_logo’ ) ) : ?>
    <img src=”<?php echo esc_url( get_theme_mod( ‘bearded_logo’ ) ); ?>” alt=”<?php bloginfo( ‘name’ ); ?>” />
    <?php else : bloginfo( ‘name’ ); endif; ?>

    </a.>
    </h1>
    <h2 id=”site-description” class=”hide-for-small”><?php bloginfo( ‘description’ ); ?></h2>
    </hgroup><!– #branding –>

    Replace the bold script into your logo url. Hope it’s help. I’m sorry if My english suck.

    Forgot something, the format of Your url must be like this:

    <img src=”https://(Your Logo Url)” alt=”(Your Logo Title)”>

    Logo Url example:

    <img src=”https://themes.bonfirelab.com/bearded/wp-content/uploads/2013/11/logo1.png&#8221; alt=”Bearded”>

    If you do it really quickly it works its crazy lol

    You shouldn’t have to do it really quick. It should show up in the customize menu and stay there instead of disappear. I would like to see this issue fixed.

    English Solution

    Well guys day , since I apologize for the English google . I managed to solve in a ” strange ” . When you open the page the logo disappears because it is placed in a style tag which is inserted logo .

    So to solve just open atravéz the google chrome source code delete all of the following style tags.

    First TAG to remove the style (delete bold text)

    <li id = ” accordion – section- bearded_logo_section ” class = ” accordion -section control -section control -section -default ” style = “display: none;” >

    Second TAG to remove the style is within the previous TAG .

    <li id = ” customize -control- bearded_logo ” class = ” customize customize -control -control- image” style = “display: none;” > … < / li >

    and ready !!!

    You will be able to change the logo . But it will only change after you refresh the page.

    Solu??o em português

    Bom dia galera. Ao abrir a pagina a logo some porque é colocado um style na tag onde é inserida a logo.

    Ent?o para resolver basta abrir codigo fonte atravéz do google chrome excluir todo o style das seguintes tags

    Primeira TAG para retirar o estilo (APAGAR A PARTE QUE DESTAQUEI EM NEGRITO)

    <li id=”accordion-section-bearded_logo_section” class=”accordion-section control-section control-section-default” style=”display: none;”>

    Segunda TAG para retirar o estilo está dentro da TAG anterior.

    <li id=”customize-control-bearded_logo” class=”customize-control customize-control-image” style=”display: none;”>…

    e pronto !!!

    Irá conseguir alterar a logo. Porém ela só irá alterar depois que você atualizar a página.

    VLW GALERA !!!

    My solution for this issue step-by-step:

    1. Find this file: /themes/bearded-master/inc/function-admin.php and open it.
    2. At the end of this file you will find this function:

    function bearded_theme_customizer( $wp_customize ) {
        $wp_customize->add_section( 'bearded_logo_section' , array(
    	    'title'       => __( 'Logo', 'bearded' ),
    	    'priority'    => 30,
    	    'description' => __('Upload a logo to replace the default site name and description in the header','bearded'),
    	) );
    	$wp_customize->add_setting( 'bearded_logo' );
    	$wp_customize->add_control( new WP_Customize_Image_Control( $wp_customize, 'bearded_logo', array(
    	    'label'    => __( 'Logo', 'bearded' ),
    	    'section'  => 'bearded_logo_section',
    	    'settings' => 'bearded_logo',
    	) ) );
    }
    add_action('customize_register', 'bearded_theme_customizer');

    3. You have to cut all these lines of code and save file function-admin.php without them.
    4. Next you have to find file /themes/bearded-master/function.php and open it.
    5. Paste function at the end of this file but before this ?>
    6. Save it and that’s it!

Viewing 12 replies - 1 through 12 (of 12 total)
  • The topic ‘Changing Logo’ is closed to new replies.