The property page is displayed using the single-estate_property.php file.

For the property page you have two design types that can be set in theme options -> appearance ->Property Page Design Type
The loading of the different template is made at line 128 .

***listing_page_2.php is the file with the full wide slider image .
$listing_page_type = get_option('wp_estate_listing_page_type','');
if($listing_page_type == 2){
get_template_part('templates/listing_page_2');
}else{
get_template_part('templates/listing_page_1');
}

in the listing_page_1.php or listing_page_2.php

Property pictures are loaded from 2 different templates :

get_template_part('templates/property_pictures3'); //for listing_page_1 or
get_template_part('templates/property_pictures'); //for listing_page_2

The property details are displayed using various functions. For example in listing_page_1.php

estate_listing_price($post->ID);// to show price details
state_listing_address($post->ID); // to show listing address
estate_listing_details($post->ID);// to show listing details (custom and default ones)
estate_listing_features($post->ID); // to show features and amenities

All the above functions are defined in libs/listings_functions.php . If you want to change, add or delete listing details you should go and edit one of those functions.

The calendar is loaded via
get_template_part ('/templates/show_avalability');
at line 230

The listing reviews is loaded at line 243 via

get_template_part ('/templates/listing_reviews');

The google map container is at line 253

<div class="google_map_on_list_wrapper">
<div id="gmapzoomplus"></div>
<div id="gmapzoomminus"></div>
<div id="gmapstreet"></div>

<div id=”google_map_on_list”
data-cur_lat=”<?php echo $gmap_lat;?>”
data-cur_long=”<?php echo $gmap_long ?>”
data-post_id=”<?php echo $post->ID; ?>”>

And in the end the similar listings that are loaded at line 271 via

get_template_part ('/templates/similar_listings');

 

The code continue with the booking form at line 294 .

<div id="booking_form_request_mess"></div>
<h3 ><?php esc_html_e('Book Now','wpestate');?></h3>
<div class="has_calendar calendar_icon">
<input type="text" id="start_date" placeholder="<?php esc_html_e('Check in','wpestate'); ?>" class="form-control calendar_icon" size="40" name="start_date" value="">
</div>

For listing_page_2.php

The booking form is loaded at line 22  via get_template_part('templates/property_header2');

Booking form is at line 71

<div id="booking_form_request_mess"></div>
<h3 ><?php esc_html_e('Book Now','wpestate');?></h3> ......

The rest of the code follows the same pattern as in listing_page_1.php

The calendar is loaded at line 155 via

get_template_part ('/templates/show_avalability');

The reviews are loaded at line 187 via

get_template_part ('/templates/listing_reviews');

 

The full widht owner area is loaded at line 187 via

get_template_part ('/templates/listing_reviews');

 

Map is loaded at line 197

<div class="google_map_on_list_wrapper">
<div id="gmapzoomplus"></div>
<div id="gmapzoomminus"></div>
<div id="gmapstreet"></div>
<div id="google_map_on_list"
data-cur_lat="<?php echo $gmap_lat;?>"
data-cur_long="<?php echo $gmap_long ?>"
data-post_id="<?php echo $post->ID; ?>">
</div>
</div>

And similar listings are loaded at line 212

get_template_part ('/templates/similar_listings');