Plugin Directory

Changeset 2937212


Ignore:
Timestamp:
07/11/2023 03:03:11 PM (3 years ago)
Author:
zeevou
Message:

resolve changing guest number issue

Location:
zeevou/trunk
Files:
3 edited

Legend:

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

    r2932138 r2937212  
    18751875                            zv_checkout_moment = moment(zv_checkout, "YYYYMMDD");
    18761876                            var zv_bm_date_text = zv_checkin_moment.format('ddd, MMM DD, YYYY') + " - " + zv_checkout_moment.format('ddd, MMM DD, YYYY');
     1877                            var zv_pbc_adult_no = parseInt(jQuery('input[name="adults"]').val());
     1878                            var zv_pbc_child_no = parseInt(jQuery('input[name="children"]').val());
    18771879
    18781880                            jQuery('#zeevou-reserve-modal').removeClass("hidden");
     
    18801882                            jQuery('.zeevou-bm-unittype').text(value.name);
    18811883                            jQuery('.zeevou-bm-date').text(zv_bm_date_text);
    1882                             jQuery('.zeevou-pbc-adult-no').text(zv_adult_no);
    1883                             jQuery('.zeevou-pbc-child-no').text(zv_child_no);
     1884                            jQuery('.zeevou-pbc-adult-no').text(zv_pbc_adult_no);
     1885                            jQuery('.zeevou-pbc-child-no').text(zv_pbc_child_no);
    18841886                            jQuery('.zeevou-bm-price').text('Total Price: ' + value.zv_currency + value.zv_calculated_price);
    18851887                            jQuery('.zeevou-pbc-total-price').text(value.zv_currency + value.zv_calculated_price);
  • zeevou/trunk/readme.txt

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

    r2936953 r2937212  
    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.50
    8 * Stable tag: 0.7.50
     7* Version: 0.7.51
     8* Stable tag: 0.7.51
    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
     
    7676//============================================================================
    7777if (!defined('ZEEVOU_PLUGIN_VERSION'))
    78     define('ZEEVOU_PLUGIN_VERSION', '0.7.50');
     78    define('ZEEVOU_PLUGIN_VERSION', '0.7.51');
    7979
    8080    function zeevou_plugin_check_version() {
Note: See TracChangeset for help on using the changeset viewer.