Viewing 15 replies - 1 through 15 (of 17 total)
  • Plugin Author Heateor Support

    (@heateor)

    Oh really?
    Well, it isn’t designed in MS Paint πŸ™‚
    We will improve it in future, if there is any scope.

    Thread Starter vibhorv

    (@vibhorv)

    I am sorry, I believe you took my context the other way, I have also sent an email at support@heateor.com with the screenshot.

    I hope that will make the things clear.

    I believe the share icon is not choosing image from stripe file but choosing an SVG location which I can’t find and edit.

    I have the same trouble. I tried to change this icon manually, but I can’t find localization of it.

    EDIT:
    OK, I found it. I edit super-socializer/css/front.css file and edit this lines: theChampGoogleSvg{background:url(here is URL, I delete it) left no-repeat}.
    I delete URL from brackets and leave it as here.

    Plugin Author Heateor Support

    (@heateor)

    The icon is defined in the .theChampGoogleSvg class in wp-content/plugins/super-socializer/css/front.css file. You can change it there.

    Thread Starter vibhorv

    (@vibhorv)

    If we edit the code and make it:
    .theChampGoogleSvg{background:url() left no-repeat}
    then there will still be a blank red google background without the the icon text.

    @heateor: Kindly provide us the snippet which we can replace and get it fixed.

    Plugin Author Heateor Support

    (@heateor)

    @vibhorv
    You have to wait for the next release if you want us to get it replaced. Till then you can replace the background-url with that of the icon of your choice.

    Thread Starter vibhorv

    (@vibhorv)

    Okay!

    How soon can we expect the next release?

    Plugin Author Heateor Support

    (@heateor)

    Probably, within next couple of weeks. Don’t worry, if it gets delayed, we will send you updated front.css file to your email.

    Thread Starter vibhorv

    (@vibhorv)

    Alright, thanks for the quick support. Hope to get the updated front.css file soon. πŸ™‚

    Cheers!

    Thread Starter vibhorv

    (@vibhorv)

    Workaround: Replace the existing .theChamGoogleSvg code in front.css to the below code.

    .theChampGoogleSvg{background:url(../images/sharing/sharing.png) -32px -32px;}

    Plugin Author Rajat Varlani

    (@the_champ)

    Sharing/Login icons are better in latest version 5.4.2. Kindly update your plugin, people.

    Thread Starter vibhorv

    (@vibhorv)

    Thank you for the update! πŸ™‚

    Plugin Author Heateor Support

    (@heateor)

    You’re welcome πŸ™‚

    Sorry, but this issue is not resolved in 5.4.2

    I would like to be able to either change the icons used by this plug in…

    Happy to edit and update my front.css file accordingly.

    The social icons are gorgeus, but your Google+ icon is one that I need consistent in my other areas of the site.

    Icannot seem to recreate what you use perfectly to emulate it, better still I would love to be able to have the functionality of your plug in, but the ability to make ALL the icons as I choose them to be.

    AGAIN, happy to edit the front.css file, but we need better information as to what to put in the brackets to point to our own icon file choice.

    Plugin Author Heateor Support

    (@heateor)

    Hi nathanmoulds,

    You can place following code at the end of “wp-content/themes/CURRENT_THEME/functions.php” (in the root folder of your website) 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_ss_custom_css(){
    	?>
    	<style type="text/css">
    	.theChampGoogleSvg{
    		background:url(<?php echo get_template_directory_uri() ?>/images/google.png) left no-repeat !important;
    	}
    	</style>
    	<?php
    }
    add_action('wp_head', 'heateor_ss_custom_css');

    <?php echo get_template_directory_uri() ?>/images/google.png will form the full path to the GooglePlus icon you want to display. You can modify it accordingly.

Viewing 15 replies - 1 through 15 (of 17 total)
  • The topic ‘Google sharing icon not correct’ is closed to new replies.