uapte
This commit is contained in:
commit
58ead645c6
@ -28,7 +28,7 @@ function opalestate_single_property_layout_default() {
|
||||
// add_action( 'opalestate_after_single_property_summary', '', 55 );
|
||||
add_action( 'opalestate_after_single_property_summary', 'opalestate_property_tags', 60 );
|
||||
|
||||
if ( opalestate_get_option( 'enable_property_reviews' ) ) {
|
||||
if ( opalestate_property_reviews_enabled() ) {
|
||||
add_action( 'opalestate_after_single_property_summary', 'comments_template', 65 );
|
||||
}
|
||||
|
||||
@ -75,7 +75,7 @@ function opalestate_single_property_layout_v2() {
|
||||
|
||||
add_action( 'opalestate_after_single_property_summary', 'opalestate_property_tags', 60 );
|
||||
|
||||
if ( opalestate_get_option( 'enable_property_reviews' ) ) {
|
||||
if ( opalestate_property_reviews_enabled() ) {
|
||||
add_action( 'opalestate_after_single_property_summary', 'comments_template', 65 );
|
||||
}
|
||||
|
||||
@ -116,7 +116,7 @@ function opalestate_single_property_layout_v3() {
|
||||
// add_action( 'opalestate_after_single_property_summary', 'opalestate_property_author', 55 );
|
||||
add_action( 'opalestate_after_single_property_summary', 'opalestate_property_tags', 60 );
|
||||
|
||||
if ( opalestate_get_option( 'enable_property_reviews' ) ) {
|
||||
if ( opalestate_property_reviews_enabled() ) {
|
||||
add_action( 'opalestate_after_single_property_summary', 'comments_template', 65 );
|
||||
}
|
||||
|
||||
@ -152,7 +152,7 @@ function opalestate_single_property_layout_v4() {
|
||||
add_action( 'opalestate_after_single_property_summary', 'opalestate_property_views_statistics', 50 );
|
||||
add_action( 'opalestate_after_single_property_summary', 'opalestate_property_tags', 60 );
|
||||
|
||||
if ( opalestate_get_option( 'enable_property_reviews' ) ) {
|
||||
if ( opalestate_property_reviews_enabled() ) {
|
||||
add_action( 'opalestate_after_single_property_summary', 'comments_template', 65 );
|
||||
}
|
||||
|
||||
@ -191,7 +191,7 @@ function opalestate_single_property_layout_v5() {
|
||||
|
||||
add_action( 'opalestate_after_single_property_summary', 'opalestate_property_tags', 60 );
|
||||
|
||||
if ( opalestate_get_option( 'enable_property_reviews' ) ) {
|
||||
if ( opalestate_property_reviews_enabled() ) {
|
||||
add_action( 'opalestate_after_single_property_summary', 'comments_template', 65 );
|
||||
}
|
||||
|
||||
|
@ -119,7 +119,7 @@ $id = time();
|
||||
</div>
|
||||
|
||||
<?php
|
||||
if ( opalestate_get_option( 'enable_agency_reviews' ) ) {
|
||||
if ( opalestate_agency_reviews_enabled() ) {
|
||||
comments_template();
|
||||
}
|
||||
?>
|
||||
|
@ -106,7 +106,7 @@ $id = time();
|
||||
</div><!-- .entry-content -->
|
||||
|
||||
<?php
|
||||
if ( opalestate_get_option( 'enable_agent_reviews' ) ) {
|
||||
if ( opalestate_agent_reviews_enabled() ) {
|
||||
comments_template();
|
||||
}
|
||||
?>
|
||||
|
@ -4,7 +4,7 @@ global $property, $post;
|
||||
$amenities = $property->get_amenities();
|
||||
|
||||
?>
|
||||
<?php if ( $property->get_block_setting( 'amenities' ) && $amenities ): ?>
|
||||
<?php if ( 'on' === $property->get_block_setting( 'amenities' ) && $amenities ): ?>
|
||||
<div class="property-amenities box-inner-summary">
|
||||
<h5 class="list-group-item-heading"><?php esc_html_e( 'Amenities', 'opalestate-pro' ); ?></h5>
|
||||
<div class="list-group-item-text">
|
||||
|
@ -1,6 +1,6 @@
|
||||
<?php
|
||||
global $property;
|
||||
if ( ! $property->get_block_setting( 'apartments' ) ) {
|
||||
if ( 'on' !== $property->get_block_setting( 'apartments' ) ) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
<?php
|
||||
global $property;
|
||||
|
||||
if ( ! $property->get_block_setting( 'attachments' ) ) {
|
||||
if ( 'on' !== $property->get_block_setting( 'attachments' ) ) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -5,7 +5,7 @@ $facilities = $property->get_facilities();
|
||||
|
||||
?>
|
||||
|
||||
<?php if ( $property->get_block_setting( 'facilities' ) && $facilities && isset( $facilities[0] ) && ! empty( $facilities[0] ) ): ?>
|
||||
<?php if ( 'on' === $property->get_block_setting( 'facilities' ) && $facilities && isset( $facilities[0] ) && ! empty( $facilities[0] ) ): ?>
|
||||
<div class="property-facilities box-inner-summary">
|
||||
<h5 class="list-group-item-heading"><?php esc_html_e( "Facilities", "opalestate" ); ?></h5>
|
||||
<div class="list-group-item-text">
|
||||
|
@ -1,51 +0,0 @@
|
||||
<?php
|
||||
global $property;
|
||||
$infos = $property->get_metabox_info();
|
||||
|
||||
$types = $property->get_types();
|
||||
$status = $property->get_status();
|
||||
|
||||
?>
|
||||
ha cong
|
||||
<div class="box-info">
|
||||
<h3 class="box-heading"><?php esc_html_e( 'Property Information', 'opalestate-pro' ); ?></h3>
|
||||
<div class="box-content">
|
||||
<ul class="list-info">
|
||||
<?php if ( $infos ): ?>
|
||||
|
||||
<?php foreach ( $infos as $key => $info ) : ?>
|
||||
<?php if ( $info['value'] ) : ?>
|
||||
<li class="icon-<?php echo esc_attr( $key ); ?>"><span><?php echo esc_html( $info['label'] ); ?></span> <?php echo apply_filters( 'opalestate-pro' . $key . '_unit_format',
|
||||
trim( $info['value'] )
|
||||
); ?></li>
|
||||
<?php endif; ?>
|
||||
<?php endforeach; ?>
|
||||
|
||||
<?php endif; ?>
|
||||
<?php if ( ! empty( $types ) ): ?>
|
||||
<li class="icon-type">
|
||||
<span>
|
||||
<?php esc_html_e( 'Type', 'opalestate-pro' ); ?>
|
||||
</span>
|
||||
<?php foreach ( $types as $type ) : ?>
|
||||
<a href="<?php echo esc_url( get_term_link( $type ) ); ?>" title="<?php echo esc_attr( $type->name ); ?>">
|
||||
<?php echo esc_html( $type->name ); ?>
|
||||
</a>
|
||||
<?php endforeach; ?>
|
||||
</li>
|
||||
<?php endif; ?>
|
||||
<?php if ( ! empty( $status ) ): ?>
|
||||
<li class="icon-status">
|
||||
<span>
|
||||
<?php esc_html_e( 'Status', 'opalestate-pro' ); ?>
|
||||
</span>
|
||||
<?php foreach ( $status as $type ) : ?>
|
||||
<a href="<?php echo esc_url( get_term_link( $type ) ); ?>" title="<?php echo esc_attr( $type->name ); ?>">
|
||||
<?php echo esc_html( $type->name ); ?>
|
||||
</a>
|
||||
<?php endforeach; ?>
|
||||
</li>
|
||||
<?php endif; ?>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
@ -1,7 +1,7 @@
|
||||
<?php
|
||||
global $property;
|
||||
|
||||
if ( ! $property->get_block_setting( 'floor_plans' ) ) {
|
||||
if ( 'on' !== $property->get_block_setting( 'floor_plans' ) ) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
<?php
|
||||
global $property;
|
||||
|
||||
if ( ! $property->get_block_setting( 'map' ) ) {
|
||||
if ( 'on' !== $property->get_block_setting( 'map' ) ) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
<?php
|
||||
global $property;
|
||||
|
||||
if ( ! $property->get_block_setting( 'map' ) ) {
|
||||
if ( 'on' !== $property->get_block_setting( 'map' ) ) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
<?php
|
||||
global $property;
|
||||
|
||||
if ( ! $property->get_block_setting( 'nearby' ) ) {
|
||||
if ( 'on' !== $property->get_block_setting( 'nearby' ) ) {
|
||||
return;
|
||||
}
|
||||
|
||||
@ -50,4 +50,4 @@ if ( ! $latitude || ! $longitude ) {
|
||||
</script>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -1,7 +1,7 @@
|
||||
<?php
|
||||
global $property;
|
||||
|
||||
if ( ! $property->get_block_setting( 'video' ) ) {
|
||||
if ( 'on' !== $property->get_block_setting( 'video' ) ) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
<?php
|
||||
global $property;
|
||||
|
||||
if ( ! $property->get_block_setting( 'views_statistics' ) ) {
|
||||
if ( 'on' !== $property->get_block_setting( 'views_statistics' ) ) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
<?php
|
||||
global $property;
|
||||
|
||||
if ( ! $property->get_block_setting( 'virtual_tour' ) ) {
|
||||
if ( 'on' !== $property->get_block_setting( 'virtual_tour' ) ) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
<?php
|
||||
global $property;
|
||||
|
||||
if ( ! $property->get_block_setting( 'walkscores' ) ) {
|
||||
if ( 'on' !== $property->get_block_setting( 'walkscores' ) ) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user