Hello,
in the root folder is file calpress.php where is defined constant CALP_PATH
It is pretty simple to make replacing from http to https here:
define( ‘CALP_URL’, dirname( __FILE__ ) );
if(isset($_SERVER[‘HTTPS’])){
if ($_SERVER[“HTTPS”] == “on”) {
define( ‘CALP_URL’, str_replace(‘http’, ‘https’, CALP_URL) );;
}
}
and all images, css, javascripts will have https url when if https is enabled