for each picture, i can specify a title tag and it should look like this:<img src=“image.jpg” alt=“image description” title=“image tooltip”>
– i need that tag for seo and pinterest optimization.
i found something in the function.js
SWIFT.reloadFunctions = {
init:function() {
// Remove title attributes from images to avoid showing on hover
jQuery('img[title]').each(function() {
jQuery(this).removeAttr('title');
});
but i don’t want to mess up code which i have to restore with every update (by the way, i don’t have any programming knowlegde ;))