• Hi,

    I use the plugin for 1 year now, very easy to use and good functionality.

    Now, I’ve encountered the first problem with SSL encryption. Proper SSL requires images to load via https://

    This is what my hoster (WPEngine) said about it:

    This plugin is ‘Easy Columns’ and the content being loaded is:
    /wp-content/plugins/easy-columns/css/easy-columns.css

    In order to prevent this error message in FireFox you will need to have this CSS file load over https:// or disable the plugin. This may need to be done via the plugin’s developer as I did not see a configuration option to adjust this value within the Plugin’s configuration.

    The location of where this page is being called is located here:

    wp-content/plugins/easy-columns/easy-columns.php 232:
    <link rel="stylesheet" href="<?php echo EZC_PLUGIN_URL; ?>/css/easy-columns.css" type="text/css" media="screen, projection" />

    I hope you can help with that, since Google requires me to have SSL encryption because of merchant center.

    Can I do a manual fix?
    Is this something for a plugin update in the future?

    Best, Robin

    https://wordpress.org/plugins/easy-columns/

Viewing 1 replies (of 1 total)
  • See this from Scott K Clark –

    WP HTTPS tweaks for wp-config.php
    http://pastebin.com/qqVtBvRr

    It goes in wp-config.php. I just used this part-

    /**
     * HTTPS for plugins
     * fix default protcol used by plugins, like Easy Columns
     */
    if(!empty($_SERVER['HTTPS'])) {
    	define('WP_PLUGIN_URL', 'https://' . $_SERVER['HTTP_HOST'] . '/wp-js/wp-content/plugins');
    }
Viewing 1 replies (of 1 total)
  • The topic ‘EC not compatible with SSL encryption’ is closed to new replies.