[Plugin: Meteor Slides] Removing title attribute? Is it even possible?
-
Hi there, first of all, cheers in producing a product that I enjoy using.
Now, I would like to know if its possible to remove the title attribute from showing (when the image is being hovered upon)
I already tried 2 solutions, weirdly they failed:
1) Did this piece of code: https://www.456bereastreet.com/archive/201011/removing_title_attributes_from_wordpress_links/
using it like this:
<?php function remove_title_attributes($input) { return preg_replace('/\s*title\s*=\s*(["\']).*?\1/', '', $input); } add_filter( 'the_title', 'remove_title_attributes' ); ?>
Succeeded in removing all title attributes BUT the Meteor ones. lol
2) I tried digging into the source of Meteor and removing in includes/meteor-slideshow.php
Removing the attribute from line: 109.. alas, no luck there either.
Any suggestions on how to make it go away?
Thanks
- The topic ‘[Plugin: Meteor Slides] Removing title attribute? Is it even possible?’ is closed to new replies.