SSL-Support
-
Please provide SSL Support for the fontawesome Script by removing the
http:
from line 47:
function lead_call_button_font_awesome_css() {?> <link href="https://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet"/> <?php }
a workaround is to rehook the script in the functions.php of the theme like:
remove_action('wp_head', 'lead_call_button_font_awesome_css'); add_action('wp_head', 'xxx_lead_call_button_font_awesome_css'); function xxx_lead_call_button_font_awesome_css() {?> <link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet"/> <?php }
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘SSL-Support’ is closed to new replies.