• So far, so good. Working great in my site. One question, is it possible to change fb and g+ icons? They look a bit “old”, big thanks!

    [ link redacted, please do not post links in reviews ]

Viewing 1 replies (of 1 total)
  • Plugin Author Heateor Support

    (@heateor)

    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.

Viewing 1 replies (of 1 total)
  • The topic ‘Doing its job! :D’ is closed to new replies.