Hello,
In the admin area, you can use the extension MB Conditional Logic to show/hide a field based on another field value.
In the frontend, you can create an if
statement to check a field value before outputting another field value. I think it is a simple code, like this.
if( $willing_to_help_field == true ) {
echo $icon_field;
}