Changeset 3211753
- Timestamp:
- 12/22/2024 08:21:06 AM (16 months ago)
- Location:
- zeevou/trunk
- Files:
-
- 3 edited
-
js/search.js (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
-
zeevou.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
zeevou/trunk/js/search.js
r3122699 r3211753 876 876 for (let i = 0; i < zvAvailabilityArr.length; i++) { 877 877 const element = zvAvailabilityArr[i]; 878 if (element.availability == 0) {878 if (element.availability <= 0 || element.stop_sell == true) { 879 879 disableDate(element.date); 880 880 } else {} … … 901 901 for (let i = 0; i < zvAvailabilityArr.length; i++) { 902 902 const element = zvAvailabilityArr[i]; 903 if (element.availability == 0) {903 if (element.availability <= 0 || element.stop_sell == true) { 904 904 // console.log("date: " + element.date); 905 905 disableDate(element.date); -
zeevou/trunk/readme.txt
r3145109 r3211753 4 4 Requires at least: 3.1.0 5 5 Tested up to: 5.9.2 6 Stable tag: 0.7.7 06 Stable tag: 0.7.73 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html -
zeevou/trunk/zeevou.php
r3145109 r3211753 5 5 * Plugin URI: https://zeevou.com 6 6 * Description: Zeevou is a global community that helps you grow your hospitality business through cutting-edge automation, industry-leading training, and world-class support. 7 * Version: 0.7.7 08 * Stable tag: 0.7.7 07 * Version: 0.7.73 8 * Stable tag: 0.7.73 9 9 * Tags: Booking Website Engine, Airbnb, Booking.com, Expedia, Agoda, VRBO, HomeAway, Hotel, iCal, Zeevou, Short Term Accommodation, Serviced Apartment, Hospitality, Vacation Rentals, Property Management System, Property Management Software (PMS), Central Reservation System (CRS), Holiday Homes, Channel Manager, Guesthouse, Booking System, Free Booking Engine, Direct Booking Website 10 10 * Requires at least: 3.1.0 … … 77 77 //============================================================================ 78 78 if (!defined('ZEEVOU_PLUGIN_VERSION')) 79 define('ZEEVOU_PLUGIN_VERSION', '0.7.7 0');79 define('ZEEVOU_PLUGIN_VERSION', '0.7.73'); 80 80 81 81 function zeevou_plugin_check_version() { … … 485 485 486 486 curl_setopt_array($curl, array( 487 CURLOPT_URL => PMS_HOST.'apis/brands?properties[]=id&properties[]=name ',487 CURLOPT_URL => PMS_HOST.'apis/brands?properties[]=id&properties[]=name&page='.$page, 488 488 CURLOPT_RETURNTRANSFER => true, 489 489 CURLOPT_ENCODING => '', … … 1088 1088 1089 1089 curl_setopt_array($curl, array( 1090 CURLOPT_URL => PMS_HOST.'apis/unit_types?property='.$prop_id.'&property_units.is_active=1&staah_rate_plans.orgin_limit_booking_engine=1&properties[]=unit _images',1090 CURLOPT_URL => PMS_HOST.'apis/unit_types?property='.$prop_id.'&property_units.is_active=1&staah_rate_plans.orgin_limit_booking_engine=1&properties[]=unitImages', 1091 1091 CURLOPT_RETURNTRANSFER => true, 1092 1092 CURLOPT_ENCODING => '', … … 1340 1340 $access_token = get_option('zeevou_access_token'); 1341 1341 1342 $req_url = PMS_HOST.'apis/brands/'.$brand_id.'?properties[organization _config][]=reservation_mobile_number&properties[organization_config][]=is_required_reservation_mobile_number&properties[organization_config][]=redirect_to_confirmation_link_at_point_of_booking&properties[organization_config][]=request_payment_at_point_of_booking';1342 $req_url = PMS_HOST.'apis/brands/'.$brand_id.'?properties[organizationConfig][]=reservationMobileNumber&properties[organizationConfig][]=isRequiredReservationMobileNumber&properties[organizationConfig][]=redirectToConfirmationLinkAtPointOfBooking&properties[organizationConfig][]=requestPaymentAtPointOfBooking'; 1343 1343 1344 1344 $curl = curl_init();
Note: See TracChangeset
for help on using the changeset viewer.