File: /var/www/html/sparkle/wp-content/plugins/flexible-product-fields/templates/fields/radio.php
<?php
/**
* This template can be overridden by copying it to yourtheme/flexible-product-fields/fields/radio.php
*
* @var int $field_group_id ID of post (post type - fpf_fields).
* @var string $key Field ID.
* @var string $type Field type.
* @var mixed[] $args Custom attributes for field.
* @var string $class CSS class name or space-separated list of classes.
* @var string|string[] $value Field value.
*
* @package Flexible Product Fields
*/
$value = ( ( $value === null ) && ( ( $args['default'] ?? '' ) !== '' ) ) ? $args['default'] : $value;
?>
<div class="fpf-field fpf-<?php echo esc_attr( $type ); ?>">
<fieldset class="form-row <?php echo esc_attr( $class ); ?>" id="<?php echo esc_attr( $key ); ?>_field">
<legend><?php echo wp_kses_post( $args['label'] ); ?></legend>
<?php foreach ( $args['options'] as $option_value => $option_label ) : ?>
<label for="<?php echo esc_attr( $key . '_' . $option_value ); ?>">
<input type="radio" class="input-radio fpf-input-field"
value="<?php echo esc_html( $option_value ); ?>"
name="<?php echo esc_attr( $key ); ?>"
id="<?php echo esc_attr( $key . '_' . $option_value ); ?>"
<?php echo ( $option_value == $value ) ? 'checked' : ''; ?>
>
<?php echo wp_kses_post( $option_label ); ?>
</label>
<?php endforeach; ?>
</fieldset>
</div>