Change Outcome Quiz image border radius for a field
add_filter(‘frm_quiz_outcome_image_border_radius’, ‘change_quiz_outcome_image_border_radius_field’, 10, 2); function change_quiz_outcome_image_border_radius_field( $border_radius, $args ) { $target_outcome_id = 1168; //Change 1168 to the ID of your Outcome Quiz field if ( $target_outcome_id === $args[‘outcome’]->ID ) { $border_radius = ‘100px’; //change 100px } return $border_radius; }Continue reading