Hi there,
Thanks for the review. We are glad that you find the plugin useful.
You can change the icons by placing following code at the end of wp-content/themes/CURRENT_THEME/functions.php
before ?> (if ?> is not there, simply place the code at the end of the file) and save the file back. CURRENT_THEME is your active theme/child theme.
function heateor_hsc_custom_css(){
?>
<style type="text/css">
.heateor_sc_facebook_svg{
background: url(IMAGE_URL) left no-repeat;
}
.heateor_sc_googleplus_svg{
background: url(IMAGE_URL) left no-repeat;
}
</style>
<?php
}
add_action('wp_head', 'heateor_hsc_custom_css');
Replace IMAGE_URL
in above code with the url of the icon of your choice.