Google sharing icon not correct
-
Google+ sharing icon is not correct; it is showing icon with “g” seems to be written in MSPaint.
[http://super-socializer-wordpress.heateor.com/]Can the logo path be corrected with the actual icon image?
-
Oh really?
Well, it isn’t designed in MS Paint 🙂
We will improve it in future, if there is any scope.I am sorry, I believe you took my context the other way, I have also sent an email at [email protected] 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.The icon is defined in the
.theChampGoogleSvgclass inwp-content/plugins/super-socializer/css/front.cssfile. You can change it there.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.
@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.Okay!
How soon can we expect the next release?
Probably, within next couple of weeks. Don’t worry, if it gets delayed, we will send you updated
front.cssfile to your email.Alright, thanks for the quick support. Hope to get the updated
front.cssfile soon. 🙂Cheers!
Workaround: Replace the existing
.theChamGoogleSvgcode infront.cssto the below code..theChampGoogleSvg{background:url(../images/sharing/sharing.png) -32px -32px;}Sharing/Login icons are better in latest version 5.4.2. Kindly update your plugin, people.
Thank you for the update! 🙂
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.
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.pngwill form the full path to the GooglePlus icon you want to display. You can modify it accordingly.
The topic ‘Google sharing icon not correct’ is closed to new replies.