Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #689840

    Hallo

    Ich benütze zwei verschiedene Einstellungen für meine Masonry Galleries:

    Masonry 1: Perfektes automatisches Masonry, 4 Spalten
    Masonry 2: Flexibles Masonry, 3 Spalten

    Leider zeigen die beiden ein unterschiedliches Verhalten bei Mouse-over / Tooltip:
    Masonry 1: zeigt – wie gewünscht – die erfasste “Bildunterschrift” an
    Masonry 2: zeigt – nicht gewünscht – den “Titel” des Bildes an
    (Beim Öffnen der Bilder in der Lightbox erscheint übrigens wie gewünscht bei beiden Versionen die “Bildunterschrift”)

    Frage: (Wie) kann ich auch im Masonry 2 die “Bildunterschrift” bei Mous-over als Tooltip anzeigen lassen?

    Weitere Infos:
    Beide Masonries haben ansonsten dieselben Unter-Einstellungen, u.a.: Element captions: Zeige keines
    Ich habe für alle Bilder jeweils eine Bildunterschrift unterhalb der Bilder erfasst, diese erscheinen auch in der Medienübersicht im Feld “Bildunterschrift”. Die Felder “Titel” der Bilder sind jeweils ausgefüllt, “Alternativtext” und “Beschreibung” nicht erfasst

    Besten Dank für eure Hilfe!

    Gruss Samuel

    #691474

    Hey Office_SP,

    Thank you for using Enfold.

    I’m sorry but I don’t see any difference between the masonry elements. Could you please provide a screenshot? Use imgur or dropbox. And by “tooltip” are you referring to the browser tooltip? This tooltip will display on any element with the title attribute.

    Best regards,
    Ismael

    #691954

    Hi Ismael

    Thank you for your reply. Yes, by tooltip I refer to the “message/info” that appears when you place the mouse over an element (and wait for a short time). Element in this context refers to a masonry image.

    In Masonry 1 I don’t get the title attribute, but the attribute “Bildunterschrift” (“image description”) – which I like
    In Masonry 2 I get the title attribute (which I don’t want to appear)
    Strangely enough, in Masonry 2 I get the desired tooltip (i.e. the “image description” as opposed to the tile), when I place the mouse on the white space between the image elements (i.e. at the right of the image).

    With the two links I’ve sent you, it is easily possible to view the difference. But attached you will also find the dropbox links for the screenshots.

    Thanks a lot for your feedback and best regards,
    Samuel

    #693567

    Hi,

    Thank you for the info. Please add this in the functions.php file:

    add_action('wp_footer', 'ava_custom_script');
    function ava_custom_script(){
    ?>
    <script type="text/javascript">
    (function($) {
    	function a() {
    		$('.av-masonry-image-container img').each(function() {
    			$(this).removeAttr('title');
    		});
    	}
    
    	a();
    })(jQuery);
    </script>
    <?php
    }

    Best regards,
    Ismael

    #710362

    Hi Ismael

    I’ve had the time to do it – finally. And it works. Wonderful, thanks a lot for your great support!

    Samuel

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Anzeige Tooltip bei Mouseover in Masonry Galleries’ is closed to new replies.