Changeset 3392373
- Timestamp:
- 11/09/2025 10:19:42 AM (5 months ago)
- Location:
- bookingor/trunk
- Files:
-
- 4 edited
-
README.txt (modified) (3 diffs)
-
bookingor.php (modified) (3 diffs)
-
public/include/service/service-booking.php (modified) (1 diff)
-
public/include/woocommerce/woocommerce-payment-control.php (modified) (8 diffs)
Legend:
- Unmodified
- Added
- Removed
-
bookingor/trunk/README.txt
r3392205 r3392373 5 5 Tested up to: 6.8 6 6 Donate link: https://bookingor.com 7 Stable tag: 1.0.1 07 Stable tag: 1.0.11 8 8 Requires PHP: 7.2 9 9 License: GPLv2 or later … … 274 274 275 275 = 1.0.1 = 276 * Fix woocommerce issue.276 * Fix WooCommerce issue. 277 277 * Fix css and js issues. 278 278 … … 298 298 299 299 = 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 302 319 303 320 == Upgrade Notice == -
bookingor/trunk/bookingor.php
r3392205 r3392373 4 4 * 5 5 * @link Bookingor 6 * @since 1.0.1 06 * @since 1.0.11 7 7 * @package Bookingor 8 8 * … … 10 10 * Plugin Name: Booking System for Appointment Calendar, Meeting Scheduler and WooCommerce Bookings - Bookingor 11 11 * 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.1 012 * Version: 1.0.11 13 13 * License: GPL-2.0+ 14 14 * Tags: booking, appointment, booking System, Schedule appointment, calendar, scheduling … … 32 32 * Currently plugin version. 33 33 */ 34 define('BOOKINGOR_VERSION', '1.0.1 0');34 define('BOOKINGOR_VERSION', '1.0.11'); 35 35 36 36 /** -
bookingor/trunk/public/include/service/service-booking.php
r3269918 r3392373 85 85 'picked_date' => $value['date'], 86 86 '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' => '',88 87 'service_get_price' => $value['repeat_cost'], 89 88 'payment_method' => $customer_payment_design, -
bookingor/trunk/public/include/woocommerce/woocommerce-payment-control.php
r3392205 r3392373 281 281 'customer_get_id' => $customer_id, 282 282 '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, 284 284 'category_get_id' => $js['category_id'], 285 285 'location_get_id' => '', … … 290 290 'picked_date' => $value['date'], 291 291 'picked_date_end' => $js['get_time_all'], 292 'discount_get_price' => '',293 292 'service_get_price' => $value['repeat_cost'], 294 293 'payment_method' => $customer_payment_design, … … 314 313 'customer_get_id' => $customer_id, 315 314 '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, 317 316 'category_get_id' => $js['category_id'], 318 317 'location_get_id' => '', … … 324 323 'picked_date' => $js['get_full_date'], 325 324 'picked_date_end' => $js['get_time_all'], 326 'discount_get_price' => '',327 325 'payment_method' => $customer_payment_design, 328 326 'appoint_status' => $default_booking_status … … 392 390 'customer_get_id' => $customer_id, 393 391 '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, 395 393 'category_get_id' => $js['category_id'], 396 394 'location_get_id' => '', … … 401 399 'picked_date' => $value['date'], 402 400 'picked_date_end' => $js['get_time_all'], 403 'discount_get_price' => '',404 401 'service_get_price' => $value['repeatPrice'], 405 402 'tax_get_price' => $js['service_tax'], … … 415 412 'customer_get_id' => $customer_id, 416 413 '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, 418 415 'location_get_id' => '', 419 416 'people_count' => $js['selected_max_capacity'], … … 423 420 'picked_date' => $js['get_full_date'], 424 421 'picked_date_end' => $js['get_time_all'], 425 'discount_get_price' => '',426 422 'service_get_price' => $js['service_price'], 427 423 'tax_get_price' => $js['service_tax'],
Note: See TracChangeset
for help on using the changeset viewer.