• It’s kind of a weird idea for a plugin, but in some cases, someone needs to fight against ugly excessive advertising, and protect the WP look. Thank you!

    Speaking of Yoast, it would be nice to remove an update notice).

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Pieter Bos

    (@senlin)

    Thanks for leaving your rating and review, Mike, I appreciate it.

    I can imagine you would want to remove the update notice with new updates coming out on an almost daily basis…

    You can add a snippet of code to the functions file of your theme (via WPSE):

    function wpse_20580_disable_yoast_updates( $value ) {
        unset( $value->response['wordpress-seo/wp-seo.php'] );
        return $value;
    }
    add_filter( 'site_transient_update_plugins', 'wpse_20580_disable_yoast_updates' );

    Alternatively you can change the version number of the plugin to something like 9999.

    Thread Starter mikhmich

    (@mikeei)

    Thank you Piet! 9999 was sufficient)

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘It keeps WP a WP)’ is closed to new replies.