• Resolved Sajjad Ali

    (@the-rock)


    Hi,

    First of all, It’s a great plugin. Thanks a lot..

    I actually came here to report the issue about non-SSL images as i’m using SSL on my site but it turns out that i fixed it with a simple function. Here it is if anyone need.

    // Replace amazon non-ssl images with ssl
    function replace_content($content) {
    $content = str_replace('https://ecx.images', 'https://images-na.ssl-images',$content);
    return $content;
    }
    add_filter('the_content','replace_content');

    Just put it in your theme functions.php file.

  • The topic ‘SSL images’ is closed to new replies.