maxtrend
Forum Replies Created
-
Forum: Plugins
In reply to: [Ginger - EU Cookie Law] Shortcode Reset CookieThanks!
Forum: Plugins
In reply to: [Ginger - EU Cookie Law] Shortcode Reset CookieHow can this reset button problem be solved?
[ginger_reset_cookie class=”” text=”” redirect_url=””]Thanks
CesareForum: Plugins
In reply to: [Booking calendar, Appointment Booking System] Form select value emptyThe topic is not solved.
I just stopped banging my head because a select field is not mandatory to add it.
Your software has an unresolved bug.
Excuse me but it is right to clarify things.
Good dayForum: Plugins
In reply to: [Booking calendar, Appointment Booking System] Form select value emptyI’m sorry, what you say does not work.
After saving, the first line is deleted.
I give up.goodbye
Forum: Plugins
In reply to: [Booking calendar, Appointment Booking System] Form select value emptyyes, I want to make a select field mandatory and I want to set default value “” (empty) with label “Select Number adults”.
Thanks- This reply was modified 7 years, 11 months ago by maxtrend.
Forum: Plugins
In reply to: [Booking calendar, Appointment Booking System] Form select value emptyHi Wpdevart,
I do not want to change the form field.
I want to make a select field mandatory entering up to 5 adults with the following values (“” or 0, 1, 2, 3, 4, 5) with mandatory field, but this is not possible. see here https://www.algheroedera.it/appartamento-mugoni/The field is not mandatory because
<option value = “Select Number adults”> Select Number adults </ option>
instead of
<option value = “”> Select Number adults </ option>Thank you
Forum: Plugins
In reply to: [Booking calendar, Appointment Booking System] Form select value emptyI have this:
<select id="wpdevart_form_field7" name="wpdevart_form_field7" class="wpdevart-required "> <option value="Select Number adults" >Select Number adults</option> <option value="1">1</option> <option value="2">2</option> <option value="3">3</option> option value="4">4</option> <option value="5">5</option></select>I would like to have this:
<option value="" >Select Number adults</option>that is, the value must be empty.
Thanks
Forum: Plugins
In reply to: [Booking calendar, Appointment Booking System] Form select value emptySee module Adults* in https://www.algheroedera.it/appartamento-mugoni/
ThanksForum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] Custom search/**
* Creates a my form in home to search events with
* @param array $atts
* @return string
*/
function em_get_event_search_form_shortcode_myhome( $args = array() ){
return em_get_event_search_form_myhome( (array) $args );
}
add_shortcode ( ‘event_search_form_myhome’, ’em_get_event_search_form_shortcode_myhome’);/**
* Outputs the event search my form.
* @param array $args
*/
function em_event_search_form_myhome($args = array()){
$args = em_get_search_form_defaults($args);
$args[‘ajax’] = isset($args[‘ajax’]) ? $args[‘ajax’]:(!defined(‘EM_AJAX’) || EM_AJAX );
em_locate_template(‘templates/events-search-myhome.php’,true, array(‘args’=>$args));
}
/**
* Retreives the event search my form.
* @param array $args
*/
function em_get_event_search_form_myhome( $args = array() ){
ob_start();
em_event_search_form_myhome($args);
return ob_get_clean();
}