P
This commit is contained in:
parent
b4db533574
commit
b4b2d5c553
@ -1,3 +1,6 @@
|
|||||||
|
= 1.4.8 - 2020-05-05 =
|
||||||
|
* Fixes - Submission information tab.
|
||||||
|
|
||||||
= 1.4.6 - 2020-04-22 =
|
= 1.4.6 - 2020-04-22 =
|
||||||
* Fixes - Search queries.
|
* Fixes - Search queries.
|
||||||
* Removed - Sticky single property sidebar.
|
* Removed - Sticky single property sidebar.
|
||||||
|
@ -299,13 +299,21 @@ class Opalestate_Property_MetaBox_Submission {
|
|||||||
'id' => "{$prefix}amountrooms",
|
'id' => "{$prefix}amountrooms",
|
||||||
'type' => 'text',
|
'type' => 'text',
|
||||||
'description' => esc_html__( 'Enter Number of Amount Rooms', 'opalestate-pro' ),
|
'description' => esc_html__( 'Enter Number of Amount Rooms', 'opalestate-pro' ),
|
||||||
'after_row' => '</div><hr><button type="button" class="submission-back-btn btn btn-primary">' . esc_html__( 'Previous Step',
|
// 'after_row' => '</div><hr><button type="button" class="submission-back-btn btn btn-primary">' . esc_html__( 'Previous Step',
|
||||||
'opalestate-pro' ) . '</button><button type="button" class="submission-next-btn btn btn-primary">' . esc_html__( 'Next Step', 'opalestate-pro' ) . '</button></div>',
|
// 'opalestate-pro' ) . '</button><button type="button" class="submission-next-btn btn btn-primary">' . esc_html__( 'Next Step', 'opalestate-pro' ) . '</button></div>',
|
||||||
|
|
||||||
],
|
],
|
||||||
];
|
];
|
||||||
|
|
||||||
return apply_filters( 'opalestate_metaboxes_public_info_fields', $fields );
|
$fields = apply_filters( 'opalestate_metaboxes_public_info_fields', $fields );
|
||||||
|
|
||||||
|
$keys = array_keys( $fields );
|
||||||
|
$last = end( $keys );
|
||||||
|
|
||||||
|
$fields[ $last ]['after_row'] = '</div><hr><button type="button" class="submission-back-btn btn btn-primary">' . esc_html__( 'Previous Step',
|
||||||
|
'opalestate-pro' ) . '</button><button type="button" class="submission-next-btn btn btn-primary">' . esc_html__( 'Next Step', 'opalestate-pro' ) . '</button></div>';
|
||||||
|
|
||||||
|
return $fields;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function metaboxes_location_fields() {
|
public function metaboxes_location_fields() {
|
||||||
|
@ -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.4.6
|
* Version: 1.4.8
|
||||||
* 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
|
||||||
@ -150,7 +150,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.4.6' );
|
_doing_it_wrong( __FUNCTION__, esc_html__( 'Cheatin’ huh?', 'opalestate-pro' ), '1.4.8' );
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -159,7 +159,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.4.6' );
|
define( 'OPALESTATE_VERSION', '1.4.8' );
|
||||||
}
|
}
|
||||||
|
|
||||||
// Plugin Folder Path
|
// Plugin Folder Path
|
||||||
|
Loading…
Reference in New Issue
Block a user