Figured it out, used the following at the bottom of the the theme’s functions.php :
============
function my_mcb_admin_update_contacts( $contacts ) {
$contacts[‘slideshare’] = array(
‘icon’ => ‘yelp’, // Font Awesome Icon name
‘title’ => ‘Yelp’,
‘protocol’ => ‘http’,
‘placeholder’ => ‘https://www.yelp.com/’
);
return $contacts;
}
add_filter( ‘mcb_admin_update_contacts’, ‘my_mcb_admin_update_contacts’ );