Override Field Description with pods_form_ui_comment_text Filter

add_filter( 'pods_form_ui_comment_text', 'gnt_pod_field_comment', 10, 3);
function gnt_pod_field_comment($message, $name, $options) {
	
		$key = $options['pod'] .'.'. $options['name']  .'.description';
		
		//TODO: lookup in file or db or stg
		
		if ('accel_feedback.aggregate_wellbeing.description' == $key) {
			$message = 
				"<b>Normal = 0.00</b>. A zero value indicates that the student is generally positive<br/>".
				"<b><font color='red'>Distress = -2.00</font></b>. Negative values indicate that the student is in distress<br/>".
				"<b><font color='green'>Excess = +2.00</font></b>. Positive values indicate high wellbeing or excessive ease.<br/>";
		}
		
		return $message;
}

And how this looks on the end screen:

aggregate-wellbeing-colors

Contributed by: TysonIt

Questions