Plugin Directory

Changeset 3392373


Ignore:
Timestamp:
11/09/2025 10:19:42 AM (5 months ago)
Author:
bookingor
Message:

v 1.0.11

Location:
bookingor/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • bookingor/trunk/README.txt

    r3392205 r3392373  
    55Tested up to: 6.8
    66Donate link: https://bookingor.com
    7 Stable tag: 1.0.10
     7Stable tag: 1.0.11
    88Requires PHP: 7.2
    99License: GPLv2 or later
     
    274274
    275275= 1.0.1 =
    276 * Fix woocommerce issue.
     276* Fix WooCommerce issue.
    277277* Fix css and js issues.
    278278
     
    298298
    299299= 1.0.7 =
    300 *  woocommerce issue fixed
    301 *  updated plugin files
     300*  WooCommerce issue fixed
     301*  updated plugin files
     302
     303= 1.0.8 =
     304*  update language support
     305*  updated plugin files
     306
     307= 1.0.9 =
     308*  fix calendar
     309*  updated plugin files
     310
     311= 1.0.11 =
     312*  WooCommerce thank you page fixed
     313*  updated plugin files
     314
     315= 1.0.11 =
     316*  WooCommerce order issue fixed
     317*  updated plugin files
     318
    302319
    303320== Upgrade Notice ==
  • bookingor/trunk/bookingor.php

    r3392205 r3392373  
    44 *
    55 * @link              Bookingor
    6  * @since             1.0.10
     6 * @since             1.0.11
    77 * @package           Bookingor
    88 *
     
    1010 * Plugin Name:       Booking System for Appointment Calendar, Meeting Scheduler and WooCommerce Bookings - Bookingor
    1111 * Description:       Bookingor is an all-in-one appointment and booking management system. Streamline scheduling processes for any business or individuals. Bookingor helps you efficiently handle bookings, save time, and enhance the customer experience.
    12  * Version:           1.0.10
     12 * Version:           1.0.11
    1313 * License:           GPL-2.0+
    1414 * Tags:              booking, appointment, booking System, Schedule appointment, calendar, scheduling
     
    3232 * Currently plugin version.
    3333 */
    34 define('BOOKINGOR_VERSION', '1.0.10');
     34define('BOOKINGOR_VERSION', '1.0.11');
    3535
    3636/**
  • bookingor/trunk/public/include/service/service-booking.php

    r3269918 r3392373  
    8585                                'picked_date' => $value['date'],
    8686                                'picked_date_end' => date('Y-m-d', strtotime($value['date'] . ' ' . Glue_add_on::convert12To24($js['get_start_time']) . ' + ' . $js['service_duration'] . ' minutes')),
    87                                 'discount_get_price' =>  '',
    8887                                'service_get_price' =>  $value['repeat_cost'],
    8988                                'payment_method' => $customer_payment_design,
  • bookingor/trunk/public/include/woocommerce/woocommerce-payment-control.php

    r3392205 r3392373  
    281281                                    'customer_get_id' =>  $customer_id,
    282282                                    'service_get_id' => $js['get_service_id'],
    283                                     'staff_get_id' => $js['get_staff_id'],
     283                                    'staff_get_id' => isset($js['get_staff_id']) ? $js['get_staff_id'] : null,
    284284                                    'category_get_id' => $js['category_id'],
    285285                                    'location_get_id' => '',
     
    290290                                    'picked_date' => $value['date'],
    291291                                    'picked_date_end'    => $js['get_time_all'],
    292                                     'discount_get_price' =>  '',
    293292                                    'service_get_price' =>  $value['repeat_cost'],
    294293                                    'payment_method' => $customer_payment_design,
     
    314313                            'customer_get_id' =>  $customer_id,
    315314                            'service_get_id' => $js['get_service_id'],
    316                             'staff_get_id' => $js['get_staff_id'],
     315                            'staff_get_id' => isset($js['get_staff_id']) ? $js['get_staff_id'] : null,
    317316                            'category_get_id' => $js['category_id'],
    318317                            'location_get_id' => '',
     
    324323                            'picked_date' => $js['get_full_date'],
    325324                            'picked_date_end'    => $js['get_time_all'],
    326                             'discount_get_price' =>  '',
    327325                            'payment_method' => $customer_payment_design,
    328326                            'appoint_status' => $default_booking_status
     
    392390                                    'customer_get_id' =>  $customer_id,
    393391                                    'service_get_id' => $js['get_service_id'],
    394                                     'staff_get_id' => $js['get_staff_id'],
     392                                    'staff_get_id' => isset($js['get_staff_id']) ? $js['get_staff_id'] : null,
    395393                                    'category_get_id' => $js['category_id'],
    396394                                    'location_get_id' => '',
     
    401399                                    'picked_date' => $value['date'],
    402400                                    'picked_date_end'    => $js['get_time_all'],
    403                                     'discount_get_price' =>  '',
    404401                                    'service_get_price' =>  $value['repeatPrice'],
    405402                                    'tax_get_price' => $js['service_tax'],
     
    415412                                'customer_get_id' =>  $customer_id,
    416413                                'service_get_id' => $js['get_service_id'],
    417                                 'staff_get_id' => $js['get_staff_id'],
     414                                'staff_get_id' => isset($js['get_staff_id']) ? $js['get_staff_id'] : null,
    418415                                'location_get_id' => '',
    419416                                'people_count' => $js['selected_max_capacity'],
     
    423420                                'picked_date' => $js['get_full_date'],
    424421                                'picked_date_end'    => $js['get_time_all'],
    425                                 'discount_get_price' =>  '',
    426422                                'service_get_price' =>  $js['service_price'],
    427423                                'tax_get_price' => $js['service_tax'],
Note: See TracChangeset for help on using the changeset viewer.