PATH:
home
/
letacommog
/
laindinois
/
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 implode( ' ', $class ); ?>"> <label for="<?php echo $name; ?>"><?php echo $label; ?>:</label> <select name="<?php echo $name; ?>" id="<?php echo $name; ?>"> <?php foreach ( $options as $key => $value ) : ?> <option value="<?php echo $key; ?>"><?php echo $value; ?></option> <?php endforeach; ?> </select> </p>
[+]
..
[-] number.php
[edit]
[-] month-picker.php
[edit]
[-] datetime-picker.php
[edit]
[-] select.php
[edit]
[-] date-picker.php
[edit]
[-] hidden.php
[edit]