Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #294991

    Hi Kriesi Team,
    sry for repeating the question. But i didnt found yet a working solution, in that many thread about captions and they are only for specifiy functions, like https://kriesi.at/support/topic/easy-slider-file-name-appearing-when-hovering/ for the “Easy Slider”

    I would like to stop the simple caption on hovering in gerneral, not the sophisticated ones by enfold in the various functions.

    Especially than i put in a html tag for the lightbox.

    Thank you very much in advance,
    Sebastian.

    • This topic was modified 9 years, 8 months ago by webfordj. Reason: tags
    #295277

    Hi!

    I guess you are referring to the Masonry Gallery you have on that page, try selecting this option:

    Cheers!
    Josue

    #295334

    No, what would be too simple.

    Take a look in the picture. i marked the simple caption. i would like to have that stopped in every function.

    thanks,
    sebastian

    #295538

    Hi!

    Please try adding following code to Functions.php file inside Appearance > Editor

    function add_custom_script(){
    ?>
    <script>
    jQuery(window).load(function(){
    jQuery('img').removeAttr('title');
    jQuery('a').removeAttr('title');
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_script');

    Regards,
    Yigit

    #295578

    thanks, but we did not get it. i integrated your script and you can take a look at example

    i checked with the latest chrome, firefox and internet explorer, all have emptied caches. problem: the simple hovering effect (not the enfold hovering effect) of a masonry gallery thumb is still there. because the simple hovering effect is coming from the caption detail.

    unluckly the title (left bottom) in the lightbox of a masory gallery image, which is pulled out of the caption detail of an image disappears. but i need a description for every picture which is in full view like in the “fullscreen slider”, not only a title in the thumb view. and i like that i can use <br>. but with your script hiding the title this lightbox title disappears, eventhough its pulled out of caption description of an image and that would be a pity.

    gosh, minor problem,
    sorry for that text and i hope we find a solution.

    gruß sebastian.

    • This reply was modified 9 years, 8 months ago by webfordj.
    #295615

    Hey!

    The code is taking effect, the titles are correctly removed after the page is fully loaded:
    http://screencast.com/t/WqGB7XgGb

    Regards,
    Josue

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