| @@ -337,9 +337,9 @@ | ||
| 337 | 337 | , 'text' => '' // Text tp show for Text element |
| 338 | 338 | ) |
| 339 | 339 | */ |
| 340 | 340 | function wpbm_bs_addon( $item ) { |
| 341 | - | |
| 341 | + $milliseconds = round( microtime( true ) * 1000 ); //FixIn: 8.8.2.1 | |
| 342 | 342 | $default_item_params = array( |
| 343 | 343 | 'type' => 'addon' |
| 344 | 344 | , 'element' => 'text' // text | radio | checkbox |
| 345 | 345 | , 'text' => '' // Simple plain text showing |
| @@ -500,8 +500,10 @@ | ||
| 500 | 500 | |
| 501 | 501 | |
| 502 | 502 | function wpbm_bs_list_of_options_for_dropdown( $params, $dropdown_type = 'simple', $is_this_simple_list = true ) { |
| 503 | 503 | |
| 504 | + $milliseconds = round( microtime( true ) * 1000 ); //FixIn: 8.8.2.1 | |
| 505 | + | |
| 504 | 506 | foreach ( $params['options'] as $key => $value ) { |
| 505 | 507 | |
| 506 | 508 | if ( is_array( $value ) ) { // Complex value constructions |
| 507 | 509 | |
| @@ -701,9 +703,9 @@ | ||
| 701 | 703 | , 'title' => __('Delete', 'booking-manager') |
| 702 | 704 | , 'class' => 'button-primary' |
| 703 | 705 | , 'font_icon' => 'glyphicon glyphicon-trash' |
| 704 | 706 | , 'icon_position' => 'left' |
| 705 | - , 'action' => "jQuery('#opl_filters_formID').submit();" | |
| 707 | + , 'action' => "jQuery('#opl_filters_formID').trigger( 'submit' );" | |
| 706 | 708 | , 'mobile_show_text' => false // Show or hide text, when viewing on Mobile devices (small window size). |
| 707 | 709 | ) |
| 708 | 710 | ) |
| 709 | 711 | ); |
| @@ -948,9 +950,9 @@ | ||
| 948 | 950 | , 'title' => __('Delete', 'booking-manager') |
| 949 | 951 | , 'class' => 'button-primary' |
| 950 | 952 | , 'font_icon' => 'glyphicon glyphicon-trash' |
| 951 | 953 | , 'icon_position' => 'left' |
| 952 | - , 'action' => "jQuery('#bookingmanager_filters_formID').submit();" | |
| 954 | + , 'action' => "jQuery('#bookingmanager_filters_formID').trigger( 'submit' );" | |
| 953 | 955 | ) |
| 954 | 956 | ) |
| 955 | 957 | ); |
| 956 | 958 | ?><div class="control-group wpbm-no-padding" style="max-width:730px;"><?php |
| @@ -1582,9 +1584,9 @@ | ||
| 1582 | 1584 | $params['btn_vm_calendar'] = array( |
| 1583 | 1585 | 'title' => '' |
| 1584 | 1586 | , 'hint' => array( 'title' => __('Calendar Overview' , 'booking-manager') , 'position' => 'bottom' ) |
| 1585 | 1587 | , 'selected' => ( $selected_view_mode == 'vm_calendar' ) ? true : false |
| 1586 | - , 'link' => $bk_admin_url . '&view_mode=vm_calendar' | |
| 1588 | + , 'link' => $bk_admin_url . '&tab=vm_calendar' | |
| 1587 | 1589 | , 'icon' => '' |
| 1588 | 1590 | , 'font_icon' => 'glyphicon glyphicon-calendar' |
| 1589 | 1591 | ); |
| 1590 | 1592 | |
| @@ -1628,9 +1630,9 @@ | ||
| 1628 | 1630 | $is_icon_not_showed = true; |
| 1629 | 1631 | } |
| 1630 | 1632 | |
| 1631 | 1633 | // Text |
| 1632 | - if ( ( ! empty( $btn_params['title'] ) ) && ( ( ! $this->is_only_icons ) || ( $is_icon_not_showed ) ) ){ | |
| 1634 | + if ( ( ! empty( $btn_params['title'] ) ) && ( ( $is_icon_not_showed ) ) ){ | |
| 1633 | 1635 | ?><span class="btn-group-vertical-text" > <?php echo esc_js( $btn_params['title'] ); ?></span><?php |
| 1634 | 1636 | } |
| 1635 | 1637 | |
| 1636 | 1638 | ?></a><?php |