Hi.
I didn’t know what changed, maybe the last update but…
Now it works as I want it.
The suggested option was set before but when I leave the alt-tag blank the title was shown instead of leave the caption blank.
So I used a little snippet I found on the net:
// ALT-Text as Lightbox-Caption instead of the title
// https://kriesi.at/support/topic/lightbox-displaying-alt-tag-below-image/
function gallery_title_fix(){
?>
<script>
(function($){
$(window).load(function() {
$('img').each(function(){
var lin = $(this).attr('alt');
$(this).attr('title',lin);
});
});
})(jQuery);
</script>
<?php
}
add_action('wp_footer', 'gallery_title_fix');
But now it does what I expect without the snippet.
So… thanks for your support, whatever you did! ??
Regards,
J?rg