Tagged: social icons
-
AuthorPosts
-
July 19, 2014 at 4:24 pm #293369
Hi !
How I can change the title that is on the social icons post? Default is “Share this entry”.
Also need to change the tooltip that appears when you hover over icons of social networks.
regards
July 19, 2014 at 4:47 pm #293381Hey!
To change the title, try adding this at the very end of your theme functions.php file:
function modify_share_title(){ return "Share this"; // Put the string you want here } add_filter('avia_social_share_title', 'modify_share_title');
Regarding changing the tooltip that appears, please specify what exactly you want to change.
Cheers!
JosueJuly 19, 2014 at 5:41 pm #293406Hi, Josue.
I added the following code at the end of funtions.php:
modify_share_title function () {
return “Share this”; / / “Compartir esta entrada:”
}
add_filter (‘avia_social_share_title’, ‘modify_share_title’);But it does not work, the syntax is correct?
On the other issue also pertains to social icons Entries
When placed the pointer over one of the social icons, a label appears with the text “Share on Twiter”, “Share on Facebook”, etc.. I need to change that text to appear in Spanish: “Compartir en Twiter”, “Compartir en Facebook”, etc..
regards
July 19, 2014 at 5:49 pm #293407Hi!
Final code should be:
modify_share_title function () { return "Compartir esta entrada:"; } add_filter ('avia_social_share_title', 'modify_share_title');
Best regards,
JosueJuly 20, 2014 at 12:00 am #293490Hi!
It does not work.
Does the code must be entered before or after:require_once (‘functions-enfold.php’);
Best regards,
July 20, 2014 at 2:32 am #293499Hi,
Can you post the link to your website please?
Regards,
JosueJuly 20, 2014 at 12:31 pm #293602July 20, 2014 at 12:34 pm #293603Hi!
I think there’s a syntax error in Josue’s code – please try this code instead:
function modify_share_title(){ return "Compartir esta entrada:"; } add_filter('avia_social_share_title', 'modify_share_title', 10, 2);
Cheers!
PeterJuly 20, 2014 at 4:43 pm #293621Hi,
I’m trying to totally remove build in social icons.
Now, after un-checking all boxes in blog layout “Share links at the bottom of your blog post” section i see an emtry white space instead of icons.
Any idea how to let it disappear totally?
Thanks!July 21, 2014 at 3:38 am #293698Hi!
@RadioBardak: Just add this on Quick CSS or custom.css:.av-share-box { display: none; }
Regards,
IsmaelJuly 22, 2014 at 12:19 am #294088Hi, ¡ now it works !
Please, how I can change the text labels that appear when you hover over social icons?
Thank you.
regards
July 22, 2014 at 1:17 am #294102Hi!
Use this plugin to change those strings:
https://wordpress.org/plugins/codestyling-localization/Look for “Share on” in the translation file.
Cheers!
JosueJuly 25, 2014 at 9:39 pm #296092Thank you Ismael!
Unfortunately, this part of CSS does help no to show sharing buttons, but the huge empty space remains above suggested posts.
Can you please take a look:
http://www.radiobardak.com/kak-ispolzovat-linkedin/July 25, 2014 at 10:41 pm #296100Hi!
@radiobardak Please add following code to Quick CSS as well.template-blog .post_delimiter { margin: 0; padding: 10px; }
Best regards,
YigitJuly 26, 2014 at 8:38 pm #296271@Yigit – thanks a lot! Issue solved, working fine :)
-
AuthorPosts
- The topic ‘social icons in posts’ is closed to new replies.