• Here’s my story with Yoast (Free Version): I was in love with this plugin up until version 2.3.5. I updated to 3.0.4 about a month ago, and it immediately caused several problems with my posts. Thankfully, I was able to roll back to version 2.3.5 and I can presently post without issue.

    Question: What does the future hold for this plugin? I check this forum once a week, and I continue to see users reporting problems. And I don’t see ANY tech support/developers responding in the forum with any reassuring solutions/suggestions/game plan. Leadership and vision within the company seem to be severely lacking. It seems as if the developers/tech support have decided that silence is the way to go in regard to forum posts that relate to the current problematic status of the program.

    Have any of the developers suggested to the users that they’re working to get this plugin back to its reliable & effective status? I’ve not seen any indication of this. I realize that there have been several recent updates that have supposedly address the problems that people are having. But these updates don’t seem to be helping as the majority of forum posts that I read indicate that there’s still lots of unhappy users.

    Has this plugin seen its better days? Is it time to move on to an alternative? I can accept this if that’s the case. But I need to know! And I need to know now! Hey Yoast Developers: Let us know where this plugin stands! Spell out a clear vision on what the company plans to do with future releases/updates/versions so we can all either stick with the plugin or find an alternative.

    BTW – What are some alternatives to Yoast. Anyone know of any? I’d love to check ’em out!

    Thanks!

    -Mike

    https://wordpress.org/plugins/wordpress-seo/

Viewing 5 replies - 31 through 35 (of 35 total)
  • Someone who can help me out please?

    First of all: I changed Yoast (rolled back from buggy 3.0.7 to 3.2.5) for The SEO Framework, but have some issues to get everything right.

    I think it’s not necessary to show the page title as title, in the link ánd in the meta data, as shown here: http://static.afbeeldinguploaden.nl/1601/135866/3Y3MUq5A.png — my question is: how do I remove the page title in the meta data?

    Furthermore, I thought it was necessary to change the sitemap in my Google Webmaster Tools. However, I was surprised to see only 710 indexed pages instead of 1951… As you can see here: http://static.afbeeldinguploaden.nl/1601/135867/1AqfA1VQ.png

    I still have Yoast (not activated) as one of my WordPress plugins, so maybe that can solve this problem anyhow?

    Please help, since this is quite important! 🙂

    Thanks in advance!

    UPDATE:

    I’m already in discussion with the admin author. He responded very quickly!

    Many thanks also to “lomars” – your description was easy and awesome!

    Whether or not the problems here are universal, I find it alarming that the developers haven’t made an appearance to either provide reassurance or dismiss the reports as either solvable or erroneous.
    So, a message to them: I was looking to try the free version with a view to buying the premium version. Reading this thread has persuaded me not to. I shall be looking elsewhere.
    I sincerely hope all of you who have encountered problems get them resolved soon. Good luck!

    Fyi, I installed the WP Rollback plugin to revert to version 2.3.5. That was the end of the debate over FTP vs uploading with fingers crossed about the database. Very quick and clean.

    The good news was that the keywords were back. Previously ALL of the metadata had disappeared. This was going to call for a huge reinvestment of time to recreate. The next steps will be to do the switch to SEO Framework via SEO Data Transporter.

    If you stay with Yoast SEO version 2.3.5, i have this snippet to remove annoying update notice:

    // REMOVE UPDATE NOTICE FOR YOAST SEO PLUGIN
    
    add_filter('site_transient_update_plugins', 'remove_update_notifications');
    
    function remove_update_notifications($value) {
    	if ( isset( $value ) && is_object( $value ) ) {
    		unset($value->response[ 'wordpress-seo/wp-seo.php' ]);
    	}
    	return $value;
    }

    You can use this with any plugin. you just have to replace the_name_of_the_folder_ plugin/the_name_of_main_php_file
    For example with Akismet plugin:

    unset($value->response[ 'akismet/akismet.php' ]);

    you can add several plugins inside the “if” loop (one per line) like this:

    if ( isset( $value ) && is_object( $value ) ) {
    	unset($value->response[ 'wordpress-seo/wp-seo.php' ]);
    	unset($value->response[ 'akismet/akismet.php' ]);
    }

    Last thing (if you are not used to) you have to put this snippet in the “function.php” file of your child theme folder.

    Regards

Viewing 5 replies - 31 through 35 (of 35 total)
  • The topic ‘What Happens Next? Is It Time To Look For An Alternative?’ is closed to new replies.