Sure! Please know that I am using the Genesis child theme, Outreach Pro. I added this code to the functions.php file at the bottom. I then replaced the bloglovin’ icon number with the font awesome number that can be found on Font Awesome’s website.
//* Make Font Awesome available
add_action( 'wp_enqueue_scripts', 'enqueue_font_awesome' );
function enqueue_font_awesome() {
wp_enqueue_style( 'font-awesome', '//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css' );
}
add_filter( 'simple_social_default_glyphs', 'custom_simple_social_default_glyphs' );
function custom_simple_social_default_glyphs() {
$glyphs = array(
'bloglovin' => '',
'dribbble' => '',
'email' => '',
'facebook' => '',
'flickr' => '',
'github' => '',
'gplus' => '',
'instagram' => '',
'linkedin' => '',
'pinterest' => '',
'rss' => '',
'stumbleupon' => '',
'tumblr' => '',
'twitter' => '',
'vimeo' => '',
'youtube' => '',
);
return $glyphs;
}
I also went to Genesis=>Theme Settings and in the Header Scrips sections I placed this code:
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
Then in the Simple Social Icon widget I just placed a link to the clients blog in the Bloglovin’ space. It’s not an ideal fix but it works well in this case.
I hope that helps!