• Please! Allow us to skip the terrible cropping when uploading a custom logo on the Customize panel!
    I uploaded my 500px width logo months ago and it worked fine. Today I had to switch themes for a minute and it removed my custom logo… Now when I try to set it again it forces me to crop it at the astonishingly low size of 189×63 (???)

    In the past I published some nice reviews for your theme and plugin on your site, please fix this.

    I’ve saw a response from some weeks/months ago where you said you will see what you can do… Just add “Skip crop” like all the other themes do. Or at least give me a function to disable the cropping.

    Thanks.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter videostudio1

    (@videostudio1)

    This code allowed me to skip the cropping:

    function logo_size_change(){
    	remove_theme_support( 'custom-logo' );
    	add_theme_support( 'custom-logo', array(
    	    'height'      => 100,
    	    'width'       => 400,
    	    'flex-height' => true,
    	    'flex-width'  => true,
    	) );
    }
    add_action( 'after_setup_theme', 'logo_size_change', 11 );

    Hope it helps someone.

    Hi @videostudio1,
    Thanks for your feedback. I’ve delivered it to our developers. We will notify you when we have any news.
    Thanks for temporary solution.

    Where should I put the code for cropping? Thank you.

    Hi @poshagen,
    You may add the code to the functions.php file of your active theme. We recommend installing Child Theme and add the code to its functions.php file to keep the changes after parent theme update.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Skip logo cropping!’ is closed to new replies.