From 9272ebfe3243615f23df78d31e63f5cc9a6259fb Mon Sep 17 00:00:00 2001 From: Hoang Huu Date: Mon, 13 Jan 2020 10:13:32 +0700 Subject: [PATCH 1/2] Hotfix --- inc/classes/class-opalestate-metabox-user.php | 23 ++++++++----------- inc/user/class-opalestate-user.php | 3 +-- 2 files changed, 11 insertions(+), 15 deletions(-) diff --git a/inc/classes/class-opalestate-metabox-user.php b/inc/classes/class-opalestate-metabox-user.php index ef1212ac..19391934 100755 --- a/inc/classes/class-opalestate-metabox-user.php +++ b/inc/classes/class-opalestate-metabox-user.php @@ -18,7 +18,7 @@ if ( ! defined( 'ABSPATH' ) ) { class Opalestate_User_MetaBox { public function get_front_base_field( $prefix ) { - $management = [ + $fields = [ [ 'name' => esc_html__( 'Avatar Picture', 'opalestate-pro' ), 'desc' => esc_html__( 'This image will display in user detail and profile box information', 'opalestate-pro' ), @@ -27,7 +27,6 @@ class Opalestate_User_MetaBox { 'single' => 1, 'limit' => 1, ], - [ 'name' => esc_html__( 'Avatar Picture', 'opalestate-pro' ), 'desc' => esc_html__( 'This image will display in user detail and profile box information', 'opalestate-pro' ), @@ -37,7 +36,6 @@ class Opalestate_User_MetaBox { 'limit' => 1, ], - [ 'id' => 'first_name', 'name' => esc_html__( 'First Name', 'opalestate-pro' ), @@ -63,8 +61,7 @@ class Opalestate_User_MetaBox { ], ]; - - return $management; + return apply_filters( 'opalestate_get_user_meta_front_base_field', $fields, $prefix ); } public function get_avatar_fields( $prefix ) { @@ -107,9 +104,9 @@ class Opalestate_User_MetaBox { 'after_row' => '', ], [ - 'name' => esc_html__( 'Address', 'opalestate-pro' ), - 'id' => "{$prefix}address", - 'type' => 'text', + 'name' => esc_html__( 'Address', 'opalestate-pro' ), + 'id' => "{$prefix}address", + 'type' => 'text', ], [ 'id' => "{$prefix}map", @@ -118,7 +115,7 @@ class Opalestate_User_MetaBox { 'sanitization_cb' => 'opal_map_sanitise', 'split_values' => true, ], - ] ); + ], $prefix ); } public function get_job_fields( $prefix ) { @@ -175,7 +172,7 @@ class Opalestate_User_MetaBox { } public function get_base_fields( $prefix ) { - return [ + return apply_filters( 'opalestate_get_user_meta_base_fields', [ [ 'id' => "{$prefix}featured", 'name' => esc_html__( 'Is Featured', 'opalestate-pro' ), @@ -232,11 +229,11 @@ class Opalestate_User_MetaBox { 'type' => 'text', 'after_row' => '', ], - ]; + ], $prefix ); } public function get_social_fields( $prefix ) { - return [ + return apply_filters( 'opalestate_get_user_meta_social_fields', [ [ 'name' => esc_html__( 'Twitter', 'opalestate-pro' ), 'id' => "{$prefix}twitter", @@ -273,6 +270,6 @@ class Opalestate_User_MetaBox { 'type' => 'text_url', 'after_row' => '', ], - ]; + ], $prefix ); } } diff --git a/inc/user/class-opalestate-user.php b/inc/user/class-opalestate-user.php index c2492586..d2998f35 100755 --- a/inc/user/class-opalestate-user.php +++ b/inc/user/class-opalestate-user.php @@ -297,11 +297,10 @@ class OpalEstate_User { global $current_user; // Verify Nonce $user_id = get_current_user_id(); - $check = $this->is_blocked(); $key = 'nonce_CMB2phpopalestate_user_front'; - if ( ! isset( $_POST[ $key ] ) || empty( $_POST[ $key ] ) || ! is_user_logged_in() || $check ) { + if ( ! isset( $_POST[ $key ] ) || empty( $_POST[ $key ] ) || ! is_user_logged_in() ) { return; } From 1eac9dedb34a5e175b743ee72bdd87da48e72eef Mon Sep 17 00:00:00 2001 From: Hoang Huu Date: Mon, 13 Jan 2020 10:14:51 +0700 Subject: [PATCH 2/2] Tag 1.2.9.1 --- opal-estate-pro.php | 6 +++--- readme.txt | 5 ++++- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/opal-estate-pro.php b/opal-estate-pro.php index 28221b87..20e80a2d 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.2.9 + * Version: 1.2.9.1 * Author: WPOPAL * Author URI: http://www.wpopal.com * Requires at least: 4.9 @@ -151,7 +151,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.2.9' ); + _doing_it_wrong( __FUNCTION__, esc_html__( 'Cheatin’ huh?', 'opalestate-pro' ), '1.2.9.1' ); } /** @@ -160,7 +160,7 @@ if ( ! class_exists( 'OpalEstate' ) ) { public function setup_constants() { // Plugin version if ( ! defined( 'OPALESTATE_VERSION' ) ) { - define( 'OPALESTATE_VERSION', '1.2.9' ); + define( 'OPALESTATE_VERSION', '1.2.9.1' ); } // Plugin Folder Path diff --git a/readme.txt b/readme.txt index f4de1737..7b9ef6ca 100755 --- a/readme.txt +++ b/readme.txt @@ -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.2.9 +Stable tag: 1.2.9.1 License: GPLv3 License URI: http://www.gnu.org/licenses/gpl-3.0.html @@ -156,6 +156,9 @@ This section describes how to install the plugin and get it working. * System tickets support 24/7 available : [free support](https://wpopal.ticksy.com/ "Visit the Plugin support Page") == Changelog == += 1.2.9.1 - 2020-01-13 = +* Added - Pages settings. + = 1.2.9 - 2020-01-09 = * Added - Pages settings.