Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #277485

    Hi,

    social icons title appears as Gplus p.e. or linkedin

    at backend labels on extra header elements appear as Google Plus or LinkedIn that is the correct form to be shown.

    how could i replace current title that is icon name for real label as shown at template admin

    thx in advance

    #277540

    Hi Luis!

    Please add following code to Functions.php file in Appearance > Editor

    function add_custom_script(){
    ?>
    <script>
    jQuery(window).load(function(){
    	   jQuery(".social_bookmarks_gplus a").attr("title", "Google Plus");
    	   jQuery(".social_bookmarks_linkedin a").attr("title", "LinkedIn");
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_script');

    Best regards,
    Yigit

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.