Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #384370

    Hi there,
    i switched my shop (www.filamentworld.de) to https, and most of it worked out fine, but on the startpage there are still some issues.
    Some scipts are still loaded via http: and this causes an error.
    I really dont understand why the page is acting like this, if i go directly to http://www.filamentworld.de, the startpage is loading via http: and no error.
    If i click the logo, its loaded via https: and there is this issue with the scipts loaded still via http:

    Where do i have to switch this?
    i already changed the loading of the google fonts to href=’//fonts.googleapis.com/css?famil…
    but i dont know where to change the rest.
    all the onpage links and media is loadad via https:

    Thanks a lot in advance, your service is awesome guys!

    Best regards
    Robin

    #384478

    Another strange thing.
    The home-button redirects to http, but the logo to https:
    If i logged in, the home button directs to https too…

    #385231

    Hey!

    Please try to deactivate all plugins and see if things get changed (maybe one is causing a conflict).
    If that not helps, try to use this code in the functions.php of our child theme:

    add_filter('upload_dir', function($uploads) {
        $uploads['url'] = preg_replace('#^http://#i', 'https://', $uploads['url']);
        $uploads['baseurl'] = preg_replace('#^http://#i', 'https://', $uploads['baseurl']);
    
        return $uploads;
    });
    

    Have you tried to use this plugin: http://wordpress.org/plugins/wordpress-https/ ?

    Regards,
    Andy

    #386332

    Hi Andy,
    thanks for your help. Somehow everything works out fine right now. I havent changed anything, really strange but i’m happy with that.

    Best,
    Robin

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘SSL Issues with Enfold’ is closed to new replies.