On the /Blog page, hover over the featured images or post titles causes “Permalink to: Blog Post” to appear. I would like for that not to happen.
Thanks for your help.
-Erin
Hi there,
Please add this code in the custom JS panel:
jQuery('.blog .entry-thumb').attr('title', '');
Hope this helps.
Thank you. That has fixed the hover over the featured images but hover over post titles still shows the “Permalink” to appear.
Hello @weisbart,
Thanks for asking.
Please add following JS and let us know how it goes:
jQuery(function($){$(document).ready(function(){$('a').attr('title','');});});
Thanks.
Great! Thanks much.
You’re welcome.