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