Tagged: 

Viewing 15 posts - 1 through 15 (of 15 total)
  • Author
    Posts
  • #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

    #293381

    Hey!

    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!
    Josue

    #293406

    Hi, 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

    #293407

    Hi!

    Final code should be:

    modify_share_title function () {
    return "Compartir esta entrada:"; 
    }
    add_filter ('avia_social_share_title', 'modify_share_title');
    

    Best regards,
    Josue

    #293490

    Hi!

    It does not work.
    Does the code must be entered before or after:

    require_once (‘functions-enfold.php’);

    Best regards,

    #293499

    Hi,

    Can you post the link to your website please?

    Regards,
    Josue

    #293602
    #293603

    Hi!

    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!
    Peter

    #293621

    Hi,

    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!

    #293698

    Hi!


    @RadioBardak
    : Just add this on Quick CSS or custom.css:

    .av-share-box {
    display: none;
    }

    Regards,
    Ismael

    #294088

    Hi, ¡ now it works !

    Please, how I can change the text labels that appear when you hover over social icons?

    Thank you.

    regards

    #294102

    Hi!

    Use this plugin to change those strings:
    https://wordpress.org/plugins/codestyling-localization/

    Look for “Share on” in the translation file.

    Cheers!
    Josue

    #296092

    Thank 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/

    #296100

    Hi!


    @radiobardak
    Please add following code to Quick CSS as well

    .template-blog .post_delimiter { margin: 0; padding: 10px; }

    Best regards,
    Yigit

    #296271

    @Yigit – thanks a lot! Issue solved, working fine :)

Viewing 15 posts - 1 through 15 (of 15 total)
  • The topic ‘social icons in posts’ is closed to new replies.