U
This commit is contained in:
parent
92f5c23439
commit
54dea39cd2
@ -4052,3 +4052,9 @@ header#masthead {
|
||||
font-size: 20px;
|
||||
padding: 20px 0;
|
||||
}
|
||||
|
||||
.swiper-container .swiper-button-next.swiper-button-disabled, .swiper-container .swiper-button-prev.swiper-button-disabled {
|
||||
opacity: 1;
|
||||
cursor: pointer;
|
||||
pointer-events: all;
|
||||
}
|
||||
|
@ -1070,3 +1070,8 @@
|
||||
padding-bottom: $grid-gutter-width;
|
||||
}
|
||||
|
||||
.swiper-container .swiper-button-next.swiper-button-disabled, .swiper-container .swiper-button-prev.swiper-button-disabled {
|
||||
opacity: 1;
|
||||
cursor: pointer;
|
||||
pointer-events: all;
|
||||
}
|
||||
|
@ -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.6.6
|
||||
* Version: 1.6.7
|
||||
* Author: WPOPAL
|
||||
* Author URI: http://www.wpopal.com
|
||||
* Requires at least: 4.9
|
||||
@ -154,7 +154,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.6.6' );
|
||||
_doing_it_wrong( __FUNCTION__, esc_html__( 'Cheatin’ huh?', 'opalestate-pro' ), '1.6.7' );
|
||||
}
|
||||
|
||||
/**
|
||||
@ -163,7 +163,7 @@ if ( ! class_exists( 'OpalEstate' ) ) {
|
||||
public function setup_constants() {
|
||||
// Plugin version
|
||||
if ( ! defined( 'OPALESTATE_VERSION' ) ) {
|
||||
define( 'OPALESTATE_VERSION', '1.6.6' );
|
||||
define( 'OPALESTATE_VERSION', '1.6.7' );
|
||||
}
|
||||
|
||||
// Plugin Folder Path
|
||||
|
@ -4,7 +4,7 @@ Donate link: https://wpdocs.gitbook.io/opal-estate/
|
||||
Tags: estate, property, opalestate, house for rent, agency for lease, estate submission, agents estate property, property marketplace
|
||||
Requires at least: 4.9
|
||||
Tested up to: 5.3.2
|
||||
Stable tag: 1.6.6
|
||||
Stable tag: 1.6.7
|
||||
License: GPLv3
|
||||
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
||||
|
||||
@ -150,6 +150,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.6.7 - 2020-08-11 =
|
||||
* Fixes - Carousel buttons for gallery in single page
|
||||
|
||||
= 1.6.6 - 2020-08-03 =
|
||||
* Fixes - Frontend submission form
|
||||
|
||||
|
@ -20,6 +20,10 @@
|
||||
'effect' => 'slide',
|
||||
'breakpoints' => [ 1024 => [ "slidesPerView" => 1 ] ],
|
||||
'thumbnails_nav' => "#swiper-pagination-images",
|
||||
'navigation' => [
|
||||
'nextEl' => '.swiper-button-next',
|
||||
'prevEl' => '.swiper-button-prev',
|
||||
],
|
||||
];
|
||||
|
||||
$columns = apply_filters( 'opalestate_thumbnail_nav_column', 5 );
|
||||
@ -58,6 +62,8 @@
|
||||
<?php endforeach; ?>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
<div class="swiper-button-prev"><i class="fas fa-angle-left"></i></div>
|
||||
<div class="swiper-button-next"><i class="fas fa-angle-right"></i></div>
|
||||
</div>
|
||||
|
||||
<div class="swiper-pagination-images swiper-container" id="swiper-pagination-images" data-swiper="<?php echo esc_attr( wp_json_encode( $datanav ) ); ?>">
|
||||
|
Loading…
Reference in New Issue
Block a user