This thread is over two years old and may be outdated. Please create a new thread if you need help, or email us if you have an active Premium license.

Replies

6
  1. Andrew Misplon Staff

    Hi laszlo69

    The easiest way to add a logo would be via Appearance > Header, perhaps give that a try.

  2. laszlo69

    Hi,

    If pitch theme is active Appearance > Header option is available but if activate the pitch-cild theme this option disappears.
    Why?

  3. Andrew Misplon Staff

    My guess is that an aspect of your child theme is de-registering this feature. The custom header is called in the parent functions.php file as follows – this is abbreviated, there are other statements around this:

    function pitch_setup(){
    	// We all like to change the background
    	add_theme_support('custom-header', array(
    		'flex-height' => true,
    		'flex-width' => true,
    		'header-text' => false,
    	));
    }
    endif;
    add_action('after_setup_theme', 'pitch_setup');

    Are you doing anything in your child theme’s functions.php file to change this setup?

  4. laszlo69

    Super!

    It works.
    Fine.

    Thank you very much.

    Best regards
    Laszlo

  5. laszlo69

    Oh!

    No. I did not do nothing.
    Now copy this code in the child functions.php and works fine.

    Thanks again
    Laszlo

  6. Andrew Misplon Staff

    Mmm, if that works then we’ll leave it there for now. let me know if it becomes a problem moving forward.

Replies on this thread are closed.

Please create a new thread if you have a question, or purchase a SiteOrigin Premium license if you need one-on-one email support.

Have a different question or issue?

Start New Thread