Hello Vladimir,
It seems that your SEO Image plugin has been abandoned, since it was last updated 7 years ago. There are deprecated functions in the plugin that need updating and also PHP Notices/Warnings that should be resolved.
Instead of letting this plugin stagnate, I would be interested to continue development where you left off. Would you be willing to add me as a committer as explained here?
I will then be responsible for future development, maintenance, updates and to ensure the plugin complies with all plugin guidelines.
Thanks,
George
If is scripts on page with statements like this:
var string = “<img src=\”https://site.com/wp-content/plugins/peepso-core/assets/images/ajax-loader.gif\””
seo-images fix it to this:
var string = “<img src=\”https://site.com/wp-content/plugins/peepso-core/assets/images/ajax-loader.gif\” title=”””
And this is leading to error
title=”” must be title=\”\”
]]>There hasnt been any resolve to any queries here in years, therefore this means it has been abandoned.
I would use this, find an alternative.
Times like this then the plugin shuold be deleted from WordPress
Unles proven otherwise
]]>I cannot upload images into the media library if this plugin is active. I get the error message:
An error occurred during upload. Try again later.
If I disable it I can upload whitout any problem.
]]>Не работает вообще!!
]]>I’m using Chrome inspector to look at the images on the live site. I don’t see the alt tag and everything is turned on.
Can you please advise?
]]>Is your plugin can automatically copy a “Pic Title” and paste in the “Alt tag”?
thanks!
I have installed this and I set it up
however my images still show like this https://share.pho.to/AKyJa
I am using it WooCommerce
how do I set it up to show the SET image title here?
Hi.
Please have a look at the following screenshot: https://ge.tt/85ksPde2
What happened? How to fix it?
Hi Just install this plugin but keep getting this message.
Parse error: syntax error, unexpected ‘[‘ in /home2/garytay9/public_html/winshowtickets.co.uk/wp-content/plugins/seo-friendly-images-for-wp/seo-friendly-images.php on line 173
I am a total novice around wordpress or any website and wonder if someone could help
Many thanks
]]>Any chance this would be sorted soon?
FILE: /nas/content/live/yourthaiguide/wp-content/plugins/seo-image/seo-friendly-images.class.php
————————————————————————————————
FOUND 1 ERROR AFFECTING 1 LINE
————————————————————————————————
921 | ERROR | Deprecated PHP4 style constructor are not supported since PHP7
————————————————————————————————
Whaen I look within the browser source code fro the page, all I see is, “
alt=”” title=””
.
Am I missing something within the settings ?
]]>Primeiro quero parabenizar pelo trabalho pois ele é rápido, eficiente e funciona perfeitamente. Quero pedir para fazer duas altera??es uma para que quando se clicar na foto seja aberto uma nova janela agora ele esta usando a mesma janela e saindo do site e a outra para que se possível centraliza as imagens est?o alinhadas para esquerda, agrade?o obrigado.
First I want to congratulate the work because it is fast, efficient and works perfectly. I want to ask to make two changes to one that when you click on the picture to open a new window now he is using the same window and out of the site and the other so that if possible centralizes the images are aligned to the left, thank you thank you.
]]>Since this plugin is not getting updated any more, I started using this plugin: https://www.ads-software.com/plugins/seo-optimized-images/
It basically does the same thing.
Too bad, I used the still working version (forgot which version number this was) of seo friendly images. I thought it was a good plugin. Just can’t stand the feeling that I have been working with an old, not up-to-date plugin.
]]>Been waiting some weeks now, to see if it changed. But no… My images does not get a alt or title tag. Do you have a solution? E.g: https://goo.gl/DqXAlC
]]>Has this plugin been abandoned? Doesn’t work on homepage or our mega-menu’s. I see a few other threads describing issues.
]]>In my WordPress version 4.2.2 this plugin doesn’t work. No alt tag shown in the HTML code. I am using your latest version of the plugin.
What can I do to solve this?
Thanks for answer.
]]>I bought your two premium plugins, I spent about $ 300 and I have not received anything.
I beg of you alive.
]]>None of the alt or title tags are populating with the installation of the plugin. I viewed the source on the page pre plugin install.
Then I installed the plugin and looked at the source again. Still no alt or title tags.
Any help would be appreciated. Thanks!
]]>not work
]]>Older version 2.x works with latest WP version.
]]>Why this plugin does not work with featured image?
]]>Hello,
May I suggest the following changes to add in the ability to handle cases where alt exists but is zero length as well as a performance improvement by only finding the location of the alt= once per run, instead of many times. By setting override_alt to empty it will modify only those alt tags that are empty.
diff -cb seo-image/seo-friendly-images.class.php seo-image.orig/seo-friendly-images.class.php
*** seo-image/seo-friendly-images.class.php 2015-02-27 07:00:40.528652065 -0600
--- seo-image.orig/seo-friendly-images.class.php 2015-01-02 05:04:52.000000000 -0600
***************
*** 603,610 ****
}
}
! $index=array_search('title=',$pieces);
! if ( $override_title == "on" || $index === false) {
$titletext_rep = str_replace("%title", $post->post_title, $titletext_rep );
$titletext_rep = str_replace("%name", $source[0], $titletext_rep );
$titletext_rep = str_replace("%category", $cats, $titletext_rep );
--- 603,609 ----
}
}
! if ( $override_title == "on" || !in_array('alt=', $pieces)) {
$titletext_rep = str_replace("%title", $post->post_title, $titletext_rep );
$titletext_rep = str_replace("%name", $source[0], $titletext_rep );
$titletext_rep = str_replace("%category", $cats, $titletext_rep );
***************
*** 622,632 ****
if ( ! in_array( 'title=', $pieces ) ) {
array_push( $pieces, ' title="' . $titletext_rep . '"' );
} else {
$pieces[$index + 1] = '"' . $titletext_rep . '" ';
}
}
! $index=array_search('alt=',$pieces);
! if ( $override_alt == "on" || $index === false || ($override_alt == "empty" && $index !== false && strlen($pieces[$index+1]) == 3)) {
$alttext_rep = str_replace("%title", $post->post_title, $alttext_rep );
$alttext_rep = str_replace("%name", $source[0], $alttext_rep );
$alttext_rep = str_replace("%category", $cats, $alttext_rep );
--- 621,631 ----
if ( ! in_array( 'title=', $pieces ) ) {
array_push( $pieces, ' title="' . $titletext_rep . '"' );
} else {
+ $index = array_search( 'title=', $pieces );
$pieces[$index + 1] = '"' . $titletext_rep . '" ';
}
}
! if ( $override_alt == "on" || !in_array('alt=', $pieces)) {
$alttext_rep = str_replace("%title", $post->post_title, $alttext_rep );
$alttext_rep = str_replace("%name", $source[0], $alttext_rep );
$alttext_rep = str_replace("%category", $cats, $alttext_rep );
***************
*** 641,651 ****
if ( ! in_array( 'alt=', $pieces ) ) {
array_push( $pieces, ' alt="' . $alttext_rep . '"' );
} else {
! if ($override_alt == "empty" && strlen($pieces[$loc+1]) == 3) {
$pieces[$index + 1] = '"' . $alttext_rep . '" ';
- } else if ($override_alt == "on") {
- $pieces[$index + 1] = '"' . $alttext_rep . '" ';
- }
}
}
--- 640,647 ----
if ( ! in_array( 'alt=', $pieces ) ) {
array_push( $pieces, ' alt="' . $alttext_rep . '"' );
} else {
! $index = array_search( 'alt=', $pieces );
$pieces[$index + 1] = '"' . $alttext_rep . '" ';
}
}
]]>
under woocommerce,
does this plugin apply alt and title tags to products?
SEO FRIENDLY IMAGES 3.0.5 Doesn’t work in WP 4.1. Was good in prior WP Versions.. I too have purchased the paid version and does not work either.
]]>How do I check that this plugin is working on my site? I rollover my images using firefox and it just gives me the old name. Thanks
]]>Does this plugin works with Buddypress/BBpress?
]]>Hello, this plugin really sounds great.
Installed this latest version 3.0.5 but can’t see any difference at frontend with existing images and even with new ones.
I’m I missing something here?
Thanks.
]]>Similar records constantly get in the log file.
(10:01:55 06.01.2015) Notice: Undefined offset: 0 in /var/www/.../data/www/.../wp-content/plugins/seo-image/seo-friendly-images.php (line 185)
(10:01:55 06.01.2015) Notice: Undefined offset: 0 in /var/www/.../data/www/.../wp-content/plugins/seo-image/seo-friendly-images.php (line 205)
(10:01:55 06.01.2015) Notice: Undefined offset: 0 in /var/www/.../data/www/.../wp-content/plugins/seo-image/seo-friendly-images.php (line 185)
(10:01:55 06.01.2015) Notice: Undefined offset: 0 in /var/www/.../data/www/.../wp-content/plugins/seo-image/seo-friendly-images.php (line 205)
Could you fix this little thing?
]]>Hi, every time I update the plugin will not work anymore so I have an older version 2.7.0 of the sites I use because it works correctly:
https://music98.ir
https://www.par30song.com
What’s the problem ??