Plugin Directory

Changeset 3211753


Ignore:
Timestamp:
12/22/2024 08:21:06 AM (16 months ago)
Author:
zeevou
Message:

oro 6 update

Location:
zeevou/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • zeevou/trunk/js/search.js

    r3122699 r3211753  
    876876                for (let i = 0; i < zvAvailabilityArr.length; i++) {
    877877                    const element = zvAvailabilityArr[i];
    878                     if (element.availability == 0) {
     878                    if (element.availability <= 0 || element.stop_sell == true) {
    879879                        disableDate(element.date);
    880880                    } else {}
     
    901901                for (let i = 0; i < zvAvailabilityArr.length; i++) {
    902902                    const element = zvAvailabilityArr[i];
    903                     if (element.availability == 0) {
     903                    if (element.availability <= 0 || element.stop_sell == true) {
    904904                        // console.log("date: " + element.date);
    905905                        disableDate(element.date);
  • zeevou/trunk/readme.txt

    r3145109 r3211753  
    44Requires at least: 3.1.0
    55Tested up to: 5.9.2
    6 Stable tag: 0.7.70
     6Stable tag: 0.7.73
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • zeevou/trunk/zeevou.php

    r3145109 r3211753  
    55 * Plugin URI: https://zeevou.com
    66 * 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.70
    8  * Stable tag: 0.7.70
     7 * Version: 0.7.73
     8 * Stable tag: 0.7.73
    99 * 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
    1010 * Requires at least: 3.1.0
     
    7777//============================================================================
    7878if (!defined('ZEEVOU_PLUGIN_VERSION'))
    79     define('ZEEVOU_PLUGIN_VERSION', '0.7.70');
     79    define('ZEEVOU_PLUGIN_VERSION', '0.7.73');
    8080
    8181function zeevou_plugin_check_version() {
     
    485485
    486486    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,
    488488        CURLOPT_RETURNTRANSFER => true,
    489489        CURLOPT_ENCODING => '',
     
    10881088
    10891089    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',
    10911091        CURLOPT_RETURNTRANSFER => true,
    10921092        CURLOPT_ENCODING => '',
     
    13401340    $access_token = get_option('zeevou_access_token');
    13411341
    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';
    13431343
    13441344    $curl = curl_init();
Note: See TracChangeset for help on using the changeset viewer.