Viewing 1 replies (of 1 total)
  • NateWr

    (@natewr)

    To do this, you’ll need to write to hook into the rtb_notifications filter and empty the array. That code would look like this:

    add_filter( 'rtb_notifications', 'rhs_disable_notifications' );
    function rhs_disable_notifications( $notifications ) {
    	return array();
    }
Viewing 1 replies (of 1 total)

The topic ‘Disable Notifications’ is closed to new replies.