Tagged: 

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1132476

    Hello!
    Thanks for adding WhatsApp to the social share icons. The text on hover “Share on WhatsApp” is not translated like the other social media share icons. It should be translated to “Del med WhatsApp” for Norwegian language, is that something you are in the process of adding?

    #1134237

    Hey guttogjente,

    Please try adding this at the very end of your themes/child theme’s functions.php file:

    
    // Change social icon tooltip text
    function custom_excerpt(){
    ?>
    <script>
    jQuery(window).load(function(){
        jQuery('li.av-social-link-whatsapp').each(function() {
         	jQuery(".inner_tooltip").text("New Text Here");
        });
    });
    </script>
    <?php
    }
    add_action('wp_head', 'custom_excerpt');
    // End function
    

    For more information about adding custom script please check this link.

    Best regards,
    Vinay

    #1173815

    I added this, but now the translation is wrong again. The correct translation of “Share on WhatsApp” in Norwegian is “Del med WhatsApp”. Could you log in and have a look at it, please?

    #1174587

    Hi,

    This should be fixed in here – https://kriesi.at/support/topic/yelp-link-shows-up-at-blog/ :)

    Best regards,
    Yigit

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