Hi,
Please insert his code at functions.php of theme.
Find this code:-
wp_register_style('fontawesome-css', SF_LOCAL_PATH . '/css/font-awesome.min.css', array(), '3.0', 'screen');
Change to :-
wp_register_style('fontawesome-css','//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css', array(), '3.0', 'screen');
2- Find this code at shortcodes.php at /supreme/includes/
if ($yelp) {
$social_icons .= '<li class="yelp"><a href="'.$yelp.'/" target="_blank">Yelp</a></li>';
}
Change to:-
if ($yelp) {
$social_icons .= '<li class="yelp"><a href="'.$yelp.'/" target="_blank">Yelp</a></li>';
}
//please change the href link here
$social_icons .= '<li style="background:none !important" ><a href="YOUR_LINK_TO_VINE" target="_blank"><i class="fa-vine" ></i></a></li>';
Thanks
Mohammad