Plugin Directory

Changeset 2768982


Ignore:
Timestamp:
08/10/2022 03:13:38 PM (4 years ago)
Author:
caagsoftware
Message:

update for version 1.5.14

Location:
hq-rental-software/trunk
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • hq-rental-software/trunk/ CHANGELOG.txt

    r2763629 r2768982  
    11== Change Log ==
     2
     3= 1.5.14 =
     4
     5Fixes on styles for Wheelsberry Slider Widget.
     6Setting 5 feature max for Wheelsberry Slider Widget.
    27
    38= 1.5.13 =
  • hq-rental-software/trunk/CHANGELOG.md

    r2763629 r2768982  
    33All notable changes to this project will be documented in this file.
    44
    5 The format is based on [Keep a Changelog](http://keepachangelog.com/)
    6 and this project adheres to [Semantic Versioning](http://semver.org/).
     5This project adheres to [Semantic Versioning](http://semver.org/).
     6
     7# [1.5.14] - 2022-08-10
     8
     9- Fixes on styles for Wheelsberry Slider Widget.
     10- Setting 5 feature max for Wheelsberry Slider Widget.
     11
     12### Changed
     13
     14- ```HQWheelsberrySliderShortcode.php``` Wheelsberry Slider Shortcode File.
     15- Styles files.
    716
    817# [1.5.13] - 2022-07-29
  • hq-rental-software/trunk/README.txt

    r2763629 r2768982  
    66Tested up to: 6.0
    77Requires PHP: 7.3.0
    8 Stable tag: 1.5.13
     8Stable tag: 1.5.14
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • hq-rental-software/trunk/hq-wordpress.php

    r2763629 r2768982  
    44Plugin URI: https://hqrentalsoftware.com/knowledgebase/wordpress-plugin/
    55Description: This plugin is to easily integrate HQ Rental Software with your website which will allow your rental business to receive reservations directly from your site.
    6 Version: 1.5.13
     6Version: 1.5.14
    77Author: HQ Rental Software
    88Author URI: https://hqrentalsoftware.com
     
    1212namespace HQRentalsPlugin;
    1313
    14 define('HQ_RENTALS_PLUGIN_VERSION', '1.5.13');
     14define('HQ_RENTALS_PLUGIN_VERSION', '1.5.14');
    1515
    1616require_once('includes/autoloader.php');
  • hq-rental-software/trunk/includes/assets/HQRentalsAssetsHandler.php

    r2758610 r2768982  
    5656        wp_register_style('hq-wheelsberry-om-font-styles', plugin_dir_url(__FILE__) . 'css/wheelsberry/omFont.css', array(), HQ_RENTALS_PLUGIN_VERSION, 'all');
    5757        wp_register_style('hq-wheelsberry-responsive-mobile', plugin_dir_url(__FILE__) . 'css/wheelsberry/responsive-mobile.css', array(), HQ_RENTALS_PLUGIN_VERSION, 'all');
     58        wp_register_style('hq-wheelsberry-slider-css', plugin_dir_url(__FILE__) . 'css/hq-wheelsberry-slider.css', array(), HQ_RENTALS_PLUGIN_VERSION, 'all');
    5859        wp_register_style('hq-elementor-vehicle-grid-widget-css', plugin_dir_url(__FILE__) . 'css/hq-elementor-vehicle-grid-widget.css', array(), HQ_RENTALS_PLUGIN_VERSION, 'all');
    5960        wp_register_style('hq-places-form-css', plugin_dir_url(__FILE__) . 'css/hq-places-form.css', array(), HQ_RENTALS_PLUGIN_VERSION, 'all');
     
    314315    {
    315316        wp_enqueue_style('hq-wheelsberry-styles');
     317        wp_enqueue_style('hq-wheelsberry-slider-css');
    316318        wp_enqueue_style('hq-wheelsberry-custom-styles');
    317319        wp_enqueue_style('hq-wheelsberry-om-font-styles');
  • hq-rental-software/trunk/includes/assets/css/wheelsberry/style.css

    r2762502 r2768982  
    101101    min-width:940px;
    102102}
    103 @media (min-width: 1300px){
    104     .owl-nav {
    105         bottom: 30vh;
    106     }
    107 }
     103
    108104* {
    109105    outline:none;
  • hq-rental-software/trunk/includes/assets/js/hq-carousel.js

    r2762502 r2768982  
    1010        autoHeight: true,
    1111        autoplay: true,
    12         /*
    13         responsive : {
    14             // breakpoint from 0 up
    15             0 : {
    16                 option1 : value,
    17                 option2 : value,
    18                 ...
    19             },
    20             // breakpoint from 480 up
    21             480 : {
    22                 option1 : value,
    23                 option2 : value,
    24                 ...
    25             },
    26             // breakpoint from 768 up
    27             768 : {
    28                 option1 : value,
    29                 option2 : value,
    30                 ...
    31             }
    32         }*/
    3312    });
    3413    jQuery('.hq-tab').on('click',function (e){
  • hq-rental-software/trunk/includes/shortcodes/HQWheelsberrySliderShortcode.php

    r2763002 r2768982  
    7070                #hq-wheelsberry-slider{
    7171                    background-color: {$themeColor};
    72                     font-family: Montserrat, Open Sans !important;
    73                 }
    74                 .hq-reservation-form-wrapper,
    75                 .hq-reservation-form-wrapper select,
    76                 .hq-reservation-form-wrapper input,
    77                 .hq-reservation-form-wrapper select placeholder,
    78                 .hq-reservation-form-wrapper select option{
    79                     font-family: Montserrat, Open Sans !important;
    80                 }
    81                 #hq-wheelsberry-slider .cars-slider__item-option-label{
    82                     font-family: Open Sans, Montserrat  !important;
    83                 }
    84                 .branding-img{
    85                     max-width: 200px;
    86                     height: auto;
    87                 }
    88                 .owl-prev, .owl-next{
    89                     width: 60px !important;
    90                     height: 60px !important;
    91                     line-height: 60px !important;
    92                     text-align: center !important;
    93                     border-radius: 50% !important;
    94                     font-size: 32px !important;
    95                     color: red;
    96                     background-color: #333333 !important;
    97                 }
    98                
    99                 .cars-slider__hq-feature-icon{
    100                     display: inline-block;
    101                     position: relative;
    102                     width: 44px;
    103                     height: 44px;
    104                     text-align: center;
    105                     line-height: 40px !important;
    106                     border-radius: 50%;
    107                     font-size: 25px;
    108                     background-color: grey;
    109                     color: #fff;
    110                     margin-right: 10px;   
    111                 }
    112                 .hq-wheelsberry-image-wrapper{
    113                     width: 45%;
    114                 }
    115                 @media only screen and (max-width: 519px){
    116                     .hq-wheelsberry-image-wrapper{
    117                        width: 100%;
    118                     }
    119                 }
    120                 .hq-reservation-item-inner-wrapper{
    121                     overflow:hidden;
    122                 }
    123 
    124                 #reservation-form__pick-up-date-input, #reservation-form__drop-off-date-input{
    125                     background-color: #fff !important;
    126                 }
    127                 .reservation-form select, .reservation-form input[type=text]{
    128                     height: 50px;
    129                 }
    130                 .cars-slider__item-category{
    131                     font-family: Montserrat !important;
    132                 }
    133                 .hq-upper-tag{
    134                     text-transform: uppercase;
    135                     font-size: 16px;
    136                 }
    137                 .owl-nav{
    138                     padding-top: 20px;
    139                 }
    140                 .cars-slider .owl-prev,
    141                  .cars-slider .owl-next{
    142                     top: -60px !important;
    143                 }
    144                 @media only screen and (max-width: 1350px){
    145                     .cars-slider .owl-prev,
    146                      .cars-slider .owl-next{
    147                         bottom: 30px !important;
    148                     }
     72                    font-family: Montserrat, Open Sans,serif !important;
    14973                }
    15074            </style>
     
    361285        if (is_array($features) and count($features)) {
    362286            $html = '';
    363             foreach ($features as $feature) {
     287            foreach (array_slice($features,0, 5) as $feature) {
    364288                $html .= "
    365289                    <div class='cars-slider__item-option car-option'><i class='cars-slider__hq-feature-icon {$feature->icon}'></i><span class='cars-slider__item-option-label'>{$feature->label}</span></div>       
Note: See TracChangeset for help on using the changeset viewer.