Developers: How to disable the YARPP Review Notice

Add the following to your theme's functions.php file if you want to disable the Review Notice from appearing:

/**
 * 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);

 

Was this article helpful?
0 out of 0 found this helpful