diff --git a/assets/.DS_Store b/assets/.DS_Store index 5aa263be..edbbfa5b 100755 Binary files a/assets/.DS_Store and b/assets/.DS_Store differ diff --git a/assets/3rd/.DS_Store b/assets/3rd/.DS_Store index b733a968..fcca08a1 100755 Binary files a/assets/3rd/.DS_Store and b/assets/3rd/.DS_Store differ diff --git a/changelog.txt b/changelog.txt index 433af0bf..d2c7de65 100755 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,6 @@ += 1.4.9.3 - 2020-05-25 = +* Fixes - Swiper responsive. + = 1.4.9.2 - 2020-05-21 = * Added - Message additional information. * Fixes - Set feature property for customers. diff --git a/opal-estate-pro.php b/opal-estate-pro.php index 9225720e..98fec39e 100755 --- a/opal-estate-pro.php +++ b/opal-estate-pro.php @@ -3,7 +3,7 @@ * Plugin Name: Opal Estate Pro * Plugin URI: https://wpdocs.gitbook.io/opal-estate/ * Description: Opal Real Estate Plugin is an ideal solution and brilliant choice for you to set up a professional estate website. - * Version: 1.4.9.2 + * Version: 1.4.9.3 * Author: WPOPAL * Author URI: http://www.wpopal.com * Requires at least: 4.9 @@ -150,7 +150,7 @@ if ( ! class_exists( 'OpalEstate' ) ) { */ public function __clone() { // Cloning instances of the class is forbidden - _doing_it_wrong( __FUNCTION__, esc_html__( 'Cheatin’ huh?', 'opalestate-pro' ), '1.4.9.2' ); + _doing_it_wrong( __FUNCTION__, esc_html__( 'Cheatin’ huh?', 'opalestate-pro' ), '1.4.9.3' ); } /** @@ -159,7 +159,7 @@ if ( ! class_exists( 'OpalEstate' ) ) { public function setup_constants() { // Plugin version if ( ! defined( 'OPALESTATE_VERSION' ) ) { - define( 'OPALESTATE_VERSION', '1.4.9.2' ); + define( 'OPALESTATE_VERSION', '1.4.9.3' ); } // Plugin Folder Path diff --git a/readme.txt b/readme.txt index c4016b13..7f82f85f 100755 --- a/readme.txt +++ b/readme.txt @@ -152,6 +152,9 @@ This section describes how to install the plugin and get it working. * System tickets support 24/7 available : [free support](https://themelexus.ticksy.com/ "Visit the Plugin support Page") == Changelog == += 1.4.9.3 - 2020-05-25 = +* Fixes - Swiper responsive. + = 1.4.9.2 - 2020-05-21 = * Added - Message additional information. * Fixes - Set feature property for customers. diff --git a/templates/parts/modules/carousel.php b/templates/parts/modules/carousel.php index 7e159590..06a2a2c8 100755 --- a/templates/parts/modules/carousel.php +++ b/templates/parts/modules/carousel.php @@ -2,11 +2,11 @@ $_id = 'posts-block-' . rand( 1, 9 ); $item = apply_filters( 'opalesate_carousel_property_column', 3, isset( $args ) ? $args : [] ); $data = [ - 'slidesPerView' => 3, - 'spaceBetween' => 30, + 'slidesPerView' => 1, + 'spaceBetween' => 10, // 'slidesPerGroup' => 1, 'loop' => false, - 'breakpoints' => [ 1024 => [ "slidesPerView" => 1 ], 768 => [ "slidesPerView" => 1 ] ], + 'breakpoints' => [ 1024 => [ "slidesPerView" => 3, 'spaceBetween' => 30, ], 768 => [ "slidesPerView" => 2 ], 640 => [ "slidesPerView" => 1 ] ], ]; $template_style = isset( $args['style'] ) && $args['style'] ? sanitize_text_field( $args['style'] ) : 'content-property-grid';