PATH:
home
/
letacommog
/
rdvenunclick.fr1
/
wp-content
/
plugins
/
woocommerce-bookings
/
templates
/
booking-form
<?php /** * The template used for select fields in the booking form, such as resources * * This template can be overridden by copying it to yourtheme/woocommerce-bookings/booking-form/select.php. * * HOWEVER, on occasion WooCommerce will need to update template files and you * (the theme developer) will need to copy the new files to your theme to * maintain compatibility. We try to do this as little as possible, but it does * happen. When this occurs the version of the template file will be bumped and * the readme will list any important changes. * * @see https://docs.woocommerce.com/document/bookings-templates/ * @author Automattic * @version 1.8.0 * @since 1.0.0 */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } $class = $field['class']; $label = $field['label']; $name = $field['name']; $options = $field['options']; ?> <p class="form-field form-field-wide <?php echo esc_attr( implode( ' ', $class ) ); ?>"> <label for="<?php echo esc_attr( $name ); ?>"><?php echo esc_html( $label ); ?>:</label> <select name="<?php echo esc_attr( $name ); ?>" id="<?php echo esc_attr( $name ); ?>"> <?php foreach ( $options as $key => $value ) : ?> <option value="<?php echo esc_attr( $key ); ?>"><?php echo esc_html( $value ); ?></option> <?php endforeach; ?> </select> </p>
[+]
..
[-] select.php
[edit]
[-] date-picker.php
[edit]
[-] month-picker.php
[edit]
[-] number.php
[edit]
[-] hidden.php
[edit]
[-] datetime-picker.php
[edit]