Viewing 6 replies - 1 through 6 (of 6 total)
  • You should be able to close the warning and it should only return when you update plugins… as long as you have made sure to NOT enable the sitemap feature in the Yoast SEO settings. However, it is possible for it to get stuck in caching so you may also need to clear your cache if it is being persistant.

    If you need additional personalized assistance to help you get this solved we also offer Premium support which you can learn more about at http://kb.yoast.com/article/160-support

    ~ Kim ~
    Support at Yoast

    If you need additional personalized assistance to help you get this solved we also offer Premium support which you can learn more about at http://kb.yoast.com/article/160-support

    @askkim
    I thought that the forum rules didn’t allow the offering of any paid services here: https://codex.wordpress.org/Forum_Welcome#Offering_to_Work_For_Hire, and this seems somewhat disingenuous when it relates to a known bug with the plugin.

    @deexgnome

    If i click the warning away it doesn’t take long and it comes back.

    This is known issue that has been listed in gitbub since 06 August and keeps cropping up in this support forum.

    To disable all Yoast SEO notifications try placing this code in the functions.php file of your child theme.

    //Disable YOAST nag messages
    remove_action( 'admin_notices', array( Yoast_Notification_Center::get(), 'display_notifications' ) );
    remove_action( 'all_admin_notices', array( Yoast_Notification_Center::get(),

    Thread Starter Theunknown1

    (@deexgnome)

    Thanks Barnez,

    sadly this code is resulting in a internal server error =/

    @kim Off Course this is checked to not use it.

    Thread Starter Theunknown1

    (@deexgnome)

    I tried the code above as i find it on github, doesnt have an effect, the spam messages come back

    http://bild-speichern.de/Tl.jpg

    function wpc_disable_yoast_notifications() {
        remove_action('admin_notices', array(Yoast_Notification_Center::get(), 'display_notifications'));
        remove_action('all_admin_notices', array(Yoast_Notification_Center::get(), 'display_notifications'));
      }

    sadly this code is resulting in a internal server error =/

    Placed that code at the end of the functions.php file, one line space after any previous rule, but inside any closing php tag

    If you’re still having issues and the functions.php code doesn’t work out, there is also a plugin solution: https://wordpress.org/plugins/so-clean-up-wp-seo/

    Thread Starter Theunknown1

    (@deexgnome)

    Thanks a lot Barnez,

    i think it is working

Viewing 6 replies - 1 through 6 (of 6 total)

The topic ‘Get spammed with Sitemap Warning’ is closed to new replies.