disable image titles on hover

Posted in: Newspaper
Post count: 114

Hi,

I want to disable the image titles that appear on hovering the mouse on the image. Also please let me know that do I need image titles at all. Are titles important for SEO purpose.

Sophia

Post count: 18283

Hello !

Please provide a link to your website in order to inspect and see what can be done.

Thank you !

Post count: 114

Sorry! forgot to send link.

The link is https://facesoman.com/

Thank you.

Post count: 18283

Hello !

Just to make sure, you want to disable this text here: https://www.screencast.com/t/hGiPgRZsWo9 By removingthe title of your posts, how will users be able to know what they could read ?

Thank you !

Post count: 114

Hi,

I dont want to remove the title of the post. I want to remove the title that comes on hover over the featured image of that post and also in the posts.

Thanks.

Post count: 18283

Hello !

That is the tooltip. Please use this js code in order to remove it: jQuery(document).ready(function($) {
$('a[title]').on('mouseenter', function () {
var $this = $(this);
$this.attr('title-cache', $this.attr('title'));
$this.attr('title', '');
});

$('a[title]').on('mouseleave', function () {
var $this = $(this);
$this.attr('title', $this.attr('title-cache'));
$this.attr('title-cache', '');
});

$('a[title]').on('click', function () {
var $this = $(this);
$this.attr('title', $this.attr('title-cache'));
$this.attr('title-cache', '');
});

$('#lightboxOverlay').on('close', function () {
var $this = $(this);
$this.attr('title', $this.attr('title-cache'));
$this.attr('title-cache', '');
});
});

The code must be inserted in here: https://www.screencast.com/t/CnqlDUbmQK

Thank you !

Viewing 6 posts - 1 through 6 (of 6 total)
The forum ‘Newspaper’ is closed to new topics and replies.