Everything is https EXCEPT the logo!

my site is using https and realized that i dont get a pretty little green lock icon. Found out was there is a single image that is not https and that is my logo.

seems however the logo url is created, it forces http and doesn’t use the site preference of https

where can i edit the theme to at least hardcode https?

thank you for your time

Hi @falconx1,

I hope you are well today and thank you for your question.

You can try achieving this by editing the below Pinbin theme file on line number 24 as following.

Pinbin theme file :

/pinbin/header.php

Before Editing :

<?php $pinbin_options = get_option('theme_pinbin_options'); ?>

After Editing :

<?php $pinbin_options = get_option('theme_pinbin_options');
if(is_ssl() ){
    $pinbin_options = preg_replace("/^http:/i", "https:", $pinbin_options);
}                   
?>

Best Regards,
Movin

thank you!

that fixed it!

You are most welcome here :slight_smile: