• Resolved mikehaceman

    (@mikehaceman)


    Hi

    1. Thanks for the plugin. It works! But could you explain what is the difference in performance between “simple” and “Capture”? My website is loading under https regardless the setting BUT only Capture load website with green padlock.

    2. Https detection recommended setting is Proto, but I’m using CloudFlare. Do I have to change to cloud flare? Also is there any difference in performance? I have tested both settings and everything seems to be the same?

    3. Images are loading Only if I add this piece of code into theme functions.php:

    function wpdf_ssl_srcset( $wpdf_sources ) {
    if (is_admin()) {
    foreach ( $wpdf_sources as &$wpdf_source ) {
    $wpdf_source['url'] = set_url_scheme( $wpdf_source['url'], 'httpp' );
    }
    }
    return $wpdf_sources;
    }
    add_filter( 'wp_calculate_image_srcset', 'wpdf_ssl_srcset' );

    Is this something that you could add to plugin?

    4. And the final thing …. While the website is loading i can see my “testimonial rotator” widget is loading and displaying for about 2 seconds. Then it disappear.

    Could you fix it?

    Thanks!

    https://ww.wp.xz.cn/plugins/ssl-insecure-content-fixer/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author webaware

    (@webaware)

    G’day mikehaceman,

    1. Simple mostly fixes scripts, stylesheets, and images that are dynamically placed on the page. Capture does that, and also cleans up some items in the WordPress text widgets and page/post content. Read about the different settings in the doco.

    2. For some time now, CloudFlare has been sending the HTTP_X_FORWARDED_PROTO header as well as its custom header. There is no difference in performance. You might as well stick with PROTO (in general, the recommended settings are best).

    3. Filtering wp_calculate_image_srcset should not be necessary. Thanks for letting me know, I’ll see if I can work out why that’s happening for you.

    4. You should ask the authors of your testimonial rotator widget for support. They will be able to help you better than I can.

    cheers,
    Ross

    Thread Starter mikehaceman

    (@mikehaceman)

    Thank you

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘performance question and small issue’ is closed to new replies.