BobCost
Forum Replies Created
-
Hi there! Any updates planned on fixing this issue? Is this plugin still maintained?
OK. Thank you!
I want to include my header and footer templates. I am using hooks inside my header and footer templates to load different theme parts, like the main navigation area and page title area. ElementsKit overrides my templates when I enable the Header/Footer functionality. Adding a hook inside the activator.php file would be best to allow theme authors to add their templates.
Forum: Plugins
In reply to: [Redux Framework] Fonts crashed after updateMy previous reply with the fix was for v4.1.3. If you’re using v4.1.4 you should also change redux-core/inc/fields/typography/class-redux-typography.php on line 840:
return 'https://fonts.googleapis.com/css?family=' . $link;
to
return '//fonts.googleapis.com/css?family=' . $link;
Forum: Plugins
In reply to: [Redux Framework] Fonts crashed after updateLatest 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, 8 months ago by BobCost.