Tagged: https
There are some hardcoded http:// links in enfold theme. For example:
enfold\framework\php\class-framework-widgets.php
if ( !empty( $title ) ) { echo $before_title . "<a href='http://twitter.com/$username/' title='".strip_tags($title)."'>".$title ."</a>". $after_title; };
Line 390: if($avatar == "yes") $output .= '<div class="tweet-thumb"><a href="http://twitter.com/'.$username.'" title=""><img src="'.$message['user']['image'].'" alt="" /></a></div>';
Line 419: $text = preg_replace("/@([\p{L}\p{Mn}]+)/u", "<a href="http://twitter.com/\\1">@\\1</a>", $text);
Line 758: $link = 'http://twitter.com/'.$twitter.'/';
How can I override those links in my childtheme?
Twitter has an https:// site and the http:// default link to twitter is outdated.