Can I disable the YARPP Review Notice?

Follow

If you want to prevent the Review Notice from appearing you can use the function below:


/**
 * Disable YARPP Review Notice
 *
 */
function yarpp_disable_review_notice() {
  remove_action('admin_notices', array('YARPP_Admin', 'display_review_notice'));
}
add_action('admin_init', 'yarpp_disable_review_notice', 11);