This commit is contained in:
Chung Pham 2021-03-15 17:32:08 +07:00
parent b190321758
commit 440e7fc604
11 changed files with 3034 additions and 10 deletions

3011
assets/js/libs/slick.js Executable file

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +1,6 @@
= 1.7.0 - 2021-03-15 =
* Fixes - js slick
= 1.6.10 - 2020-08-03 = = 1.6.10 - 2020-08-03 =
* Fixes - Send mail * Fixes - Send mail

View File

@ -81,6 +81,16 @@ class OpalEstate_Submission {
'1.0', '1.0',
true true
); );
wp_register_script(
'jquery-wpopal-slick',
trailingslashit( OPALESTATE_PLUGIN_URL ). 'assets/js/libs/slick.js',
[
'jquery',
],
'1.8.1',
true
);
} }
/* /*

View File

@ -38,7 +38,7 @@ class Opalestate_Agency_Collection_Elementor_Widget extends Opalestate_Elementor
* *
*/ */
public function get_script_depends() { public function get_script_depends() {
return [ 'jquery-slick' ]; return [ 'jquery-wpopal-slick' ];
} }
/** /**

View File

@ -38,7 +38,7 @@ class Opalestate_Agent_Collection_Elementor_Widget extends Opalestate_Elementor_
* *
*/ */
public function get_script_depends() { public function get_script_depends() {
return [ 'jquery-slick' ]; return [ 'jquery-wpopal-slick' ];
} }
/** /**

View File

@ -38,7 +38,7 @@ class Opalestate_Category_List_Elementor_Widget extends Opalestate_Elementor_Wid
* *
*/ */
public function get_script_depends() { public function get_script_depends() {
return [ 'jquery-slick' ]; return [ 'jquery-wpopal-slick' ];
} }
/** /**

View File

@ -38,7 +38,7 @@ class Opalestate_City_List_Elementor_Widget extends Opalestate_Elementor_Widget_
* *
*/ */
public function get_script_depends() { public function get_script_depends() {
return [ 'jquery-slick' ]; return [ 'jquery-wpopal-slick' ];
} }
/** /**

View File

@ -36,7 +36,7 @@ class Opalestate_Property_collection_Elementor_Widget extends Opalestate_Element
* *
*/ */
public function get_script_depends() { public function get_script_depends() {
return [ 'jquery-slick' ]; return [ 'jquery-wpopal-slick' ];
} }

View File

@ -2,7 +2,7 @@
# This file is distributed under the same license as the Opal Estate Pro package. # This file is distributed under the same license as the Opal Estate Pro package.
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Opal Estate Pro 1.6.10\n" "Project-Id-Version: Opal Estate Pro 1.7.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/opal-estate-pro\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/opal-estate-pro\n"
"POT-Creation-Date: 2020-08-20 10:29:06+00:00\n" "POT-Creation-Date: 2020-08-20 10:29:06+00:00\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -3,7 +3,7 @@
* Plugin Name: Opal Estate Pro * Plugin Name: Opal Estate Pro
* Plugin URI: https://wpdocs.gitbook.io/opal-estate/ * 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. * Description: Opal Real Estate Plugin is an ideal solution and brilliant choice for you to set up a professional estate website.
* Version: 1.6.10 * Version: 1.7.0
* Author: WPOPAL * Author: WPOPAL
* Author URI: http://www.wpopal.com * Author URI: http://www.wpopal.com
* Requires at least: 4.9 * Requires at least: 4.9
@ -154,7 +154,7 @@ if ( ! class_exists( 'OpalEstate' ) ) {
*/ */
public function __clone() { public function __clone() {
// Cloning instances of the class is forbidden // Cloning instances of the class is forbidden
_doing_it_wrong( __FUNCTION__, esc_html__( 'Cheatin’ huh?', 'opalestate-pro' ), '1.6.10' ); _doing_it_wrong( __FUNCTION__, esc_html__( 'Cheatin’ huh?', 'opalestate-pro' ), '1.7.0' );
} }
/** /**
@ -163,7 +163,7 @@ if ( ! class_exists( 'OpalEstate' ) ) {
public function setup_constants() { public function setup_constants() {
// Plugin version // Plugin version
if ( ! defined( 'OPALESTATE_VERSION' ) ) { if ( ! defined( 'OPALESTATE_VERSION' ) ) {
define( 'OPALESTATE_VERSION', '1.6.10' ); define( 'OPALESTATE_VERSION', '1.7.0' );
} }
// Plugin Folder Path // Plugin Folder Path

View File

@ -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 Tags: estate, property, opalestate, house for rent, agency for lease, estate submission, agents estate property, property marketplace
Requires at least: 4.9 Requires at least: 4.9
Tested up to: 5.3.2 Tested up to: 5.3.2
Stable tag: 1.6.10 Stable tag: 1.7.0
License: GPLv3 License: GPLv3
License URI: http://www.gnu.org/licenses/gpl-3.0.html License URI: http://www.gnu.org/licenses/gpl-3.0.html