Thank you Nebu.
This does work in the way that it ONLY includes fields that are not in the array. My goal was to include all fields but remove SOME of them. So the simple change to the custom solution is the following:
if ( in_array( $f->slug,...)
Becomes:
if ( !in_array( $f->slug,...)
That way, any fields that are not in the array will be displayed in the notification.
Thank you all very much for creating this solution!
-
This reply was modified 2 years, 9 months ago by squaredot.