• Resolved Inzerillo

    (@inzerillo87)


    I can only upload some images via FTP (due to server security).
    Where do I:
    – upload a logo or favicon? (wp-content/uploads?)
    – manually set the uploaded files to the theme logo/favicon? (in the database?)

    The logo feature in Customiz’it does not return an error, but I assume it’s an FTP issue, since we have had multiple issues with that.

    Thank you!

Viewing 2 replies - 1 through 2 (of 2 total)
  • – upload it there, yes.
    – go into the database table “wp-options” , find the option: tc_theme. There is a field named “tc_logo_upload”;s:[STRING_SIZE]:”absolute url”. (you make a back-up first)
    .

    But there’s another way, safer, add this in your child theme functions.php:

    add_filter('tc_logo_src', 'my_logo_src');
    function my_logo_src() {
        $logo_abs_path = 'LOGO_ABS_PATH';
        return $logo_abs_path;
    }

    Hope this helps

    Thread Starter Inzerillo

    (@inzerillo87)

    I used the code for child/functions.php.
    Fantastic! It worked!
    Thank you d4z!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Logo upload via FTP’ is closed to new replies.