File: /home/thanexcelr/www/wp-content/themes/fifteen/modules/social/social-fa.php
<?php
/*
** Template to Render Social Icons on Top Bar
*/
$social_style = get_theme_mod('fifteen_social_icon_style_set','style-default');
for ($i = 1; $i < 8; $i++) :
$social = esc_html(get_theme_mod('fifteen_social_'.$i));
if ( ($social != 'none') && ($social != "") ) : ?>
<a class="social-style <?php echo $social_style; ?>" href="<?php echo esc_url( get_theme_mod('fifteen_social_url'.$i) ); ?>"><i class="fa fa-fw fa-<?php echo $social; ?>"></i></a>
<?php endif;
endfor; ?>