Support » Fixing WordPress » Child theme not displaying logo option

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi,
    premium themes are not supported for many reasons(won’t debate) but one of theme is because when somebody want’s to help you they don’t have access to the code of the theme this is the case here.
    Most likely the theme saves the logo image in the file sistem with a name like logo.jpg (like it does for the favicon) another way I can think of is to have the logo link saved in the options table.
    I see you have a child theme so I’m guessing you are not affraid of looking at the theme code so go to header.php and search for the place where the logo is inserted after that you will know if you have to overwrite the image in the file sistem(using ftp) if you need to change the image address in the database or if you need to change the way your child theme inserts the logo.
    Hope this helps.
    Regards

    Thread Starter dragonbonetattoo

    (@dragonbonetattoo)

    I was hoping that would work! Alas, there is no mention of logo image in the header, only in the functions.php and options.php. See header:

    [ Moderator note: Don’t post commercial theme code here. ]

    Thank in advance…

    You are correct, check this functions:
    `st_above_header();
    st_header();
    st_below_header();
    st_navbar();`
    -or pastebin them so we can have a look.

    There are 2 options in your database that the logo functions calls:

    of_get_option('use_logo_image') //this checkes if there should be an image or text
    of_get_option('header_logo') //this brings the image if the first one is true

    so have a look in the database in the table _options where the option_name is header_logo this way you’ll see where the image is and playing with the image you can tell if it only changes the url in this field, then you can manually save another url or need to change the option from the theme…

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Child theme not displaying logo option’ is closed to new replies.