Latest plugin update (v4.1.4) doesn’t resolve this issue for https websites.
I’ve managed to fix this in: redux-core/classes/class-redux-output.php on line 212 by changing:
$protocol = ( ! empty( Redux_Core::$server['HTTPS'] ) && 'off' !== Redux_Core::$server['HTTPS'] || 443 === Redux_Core::$server['SERVER_PORT'] ) ? 'https:' : 'http:';
to:
$protocol = ( ! empty ( $_SERVER['HTTPS'] ) && $_SERVER['HTTPS'] !== 'off' || $_SERVER['SERVER_PORT'] == 443 ) ? "https:" : "http:";
Message to developers:
Changing line 840 on redux-core/inc/fields/typography/class-redux-typography.php should be left as it was.
Hope this helps.
-
This reply was modified 4 years, 7 months ago by BobCost.