Hope update plugin is coming soon.
For quick solution, I’ve updated the core file
/wp-content/plugins/wp-property/core/class_core.php
In function admin_menu()
=========================
` $all_properties = add_submenu_page( ‘edit.php?post_type=property’, $wp_properties[ ‘labels’ ][ ‘all_items’ ], $wp_properties[ ‘labels’ ][ ‘all_items’ ], ‘edit_wpp_properties’, ‘all_properties’, function () {
global $wp_properties, $screen_layout_columns;
include “ui/page_all_properties.php”;
} );`
REPLACED CODE
$all_properties = add_submenu_page( 'edit.php?post_type=property', $wp_properties[ 'labels' ][ 'all_items' ], $wp_properties[ 'labels' ][ 'all_items' ], 'edit_wpp_properties', 'all_properties', create_function( '', 'global $wp_properties, $screen_layout_columns; include "ui/page_all_properties.php";' ) );
And in function add_settings_page()
====================================
`$settings_page = add_submenu_page( ‘edit.php?post_type=property’, __( ‘Settings’, ‘wpp’ ), __( ‘Settings’, ‘wpp’ ), ‘manage_wpp_settings’, ‘property_settings’, function () {
global $wp_properties;
include “ui/page_settings.php”;
} );`
REPLACED CODE
$settings_page = add_submenu_page( 'edit.php?post_type=property', __( 'Settings', 'wpp' ), __( 'Settings', 'wpp' ), 'manage_wpp_settings', 'property_settings', create_function( '', 'global $wp_properties; include "ui/page_settings.php";' ) );
And now looks good to my site in updated version and latest plugin.
Hope this helps on your end also.
Thanks