Support » Fixing WordPress » No SSL due to insecure content

Viewing 4 replies - 1 through 4 (of 4 total)
  • Is the style enqueued?

    If you <?php var_dump( $wp_styles ); ?> is that stylesheet there?

    Alternatively,

    <?php
    global $wp_styles;
    function wporg_echo_enqueue_styles(){
      foreach($wp_styles->queue as $handle){
        echo $handle . '<br>';
      }
    }
    add_action('wp_print_styles','wporg_echo_enqueue_styles');

    That should print them up in the <head>. If they’re enqueued in WordPress, you can deregister the handle, and re-register in your functions.php file.

    Hope that helps.

    Install the SSL Insecure Content Fixer plugin and see if that fixes it.

    cheers,
    Ross

    Try this website to help you find the culprits: http://www.whynopadlock.com/

    Thread Starter chriskol

    (@chriskol)

    Hi Christian 1012, webaware, cookiemonster,

    Thanks so much for the help. The first thing I tried this morning was the plugin suggested by webaware. It took me about 4 hours yesterday to come up with nothing, this morning it was fixed within ehm 30 seconds. So appreciate the help of you Christian and the cookiemonster as well, but this was the easy fix for me (as I’m also not experienced at WP:)

    Thanks again all of you!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘No SSL due to insecure content’ is closed to new replies.