Logo

Home Support eCommerce Gem Logo

Tagged: 

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #8366
    Anonymous
    Inactive

    Hi! When I add logo (150x150px PNG) trough customize function after clicking publish I get blank site. After reverting to only site title and tagline it gets back to normal. What should I do to display my logo?

    #8367
    ProDesigns
    Keymaster

    Hi @lnowaczyk

    This is the strange issue. We will check our theme and get back to you. Can you email us your site URL through https://promenadethemes.com/contact-us/

    Thanks.

    #8368
    Anonymous
    Inactive

    I’ve uploaded your logo https://promenadethemes.com/wp-content/themes/promenade-themes/images/logo.png and it causes the same issue (blank site with top header only). Did you manage to reproduce the same bug? Do you have any suggestions?

    #8369
    ProDesigns
    Keymaster

    Hi @lnowaczyk

    It is because of the small bug in theme. We have modified the function to display a logo of the site to make it easily override through child themes and missed following code on this theme.

    Please add following lines of codes on functions.php to fix the issue you have encountered.

    if ( ! function_exists( 'ecommerce_gem_the_custom_logo' ) ) :
    
    	/**
    	 * Displays custom logo.
    	 *
    	 * @since 1.0.0
    	 */
    	function ecommerce_gem_the_custom_logo() {
    		if ( function_exists( 'the_custom_logo' ) ) {
    			the_custom_logo();
    		}
    	}
    	
    endif;

    We are extremely sorry for the trouble. Feel free to contact us if you need further help.

    Thank you.

    #8370
    Anonymous
    Inactive

    It worked like a charm. Thank you for solving this.

    #8371
    ProDesigns
    Keymaster

    Thanks for your kind cooperation and patience.

    #12344
    Anonymous
    Inactive

    Excellent one, thanks for this.

Viewing 7 posts - 1 through 7 (of 7 total)
  • You must be logged in to reply to this topic.