File "product-options.php"
Full path: /home/bud/public_html/swamp/deprecated/back-end-20251126093951/product-options.php
File size: 587 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
if ( ! defined( 'ABSPATH' ) ) {
die( 'You are not allowed to call this page directly.' );
}
?>
<p class="frm6 frm_first frm_form_field frm_product_type">
<label><?php esc_html_e( 'Product Type', 'formidable-pro' ); ?></label>
<select name="field_options[data_type_<?php echo esc_attr( $field['id'] ); ?>]" class="frmjs_prod_data_type_opt">
<?php foreach ( $data_types as $type => $label ) { ?>
<option value="<?php echo esc_attr( $type ); ?>" <?php selected( $field['data_type'], $type ); ?>>
<?php echo esc_html( $label ); ?>
</option>
<?php } ?>
</select>
</p>