update
This commit is contained in:
@@ -1,22 +1,36 @@
|
||||
<?php
|
||||
global $property, $post;
|
||||
|
||||
$amenities = $property->get_amenities();
|
||||
$amenities = $property->get_amenities();
|
||||
|
||||
?>
|
||||
<?php if ( $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" ); ?></h5>
|
||||
<h5 class="list-group-item-heading"><?php esc_html_e( 'Amenities', 'opalestate-pro' ); ?></h5>
|
||||
<div class="list-group-item-text">
|
||||
<div class="opal-row">
|
||||
<?php foreach ( $amenities as $amenity ): ?>
|
||||
<div class="col-lg-4 col-sm-4 <?php if ( has_term( $amenity->term_id, 'opalestate_amenities', $post ) ) : ?>active<?php endif; ?>">
|
||||
<?php
|
||||
if ( $image_id = get_term_meta( $amenity->term_id, 'opalestate_amt_image_id', true )) {
|
||||
echo wp_get_attachment_image( $image_id );
|
||||
}
|
||||
?>
|
||||
<?php echo esc_html( $amenity->name ); ?> <i class="fa fa-check"></i>
|
||||
<?php
|
||||
if ( apply_filters( 'opalestate_hide_unset_amenity', false ) && ! has_term( $amenity->term_id, 'opalestate_amenities', $post ) ) {
|
||||
continue;
|
||||
}
|
||||
?>
|
||||
<div class="col-lg-4 col-sm-4">
|
||||
<div class="amenity-item <?php echo has_term( $amenity->term_id, 'opalestate_amenities', $post ) ? 'active' : ''; ?>">
|
||||
<?php
|
||||
if ( $icon = get_term_meta( $amenity->term_id, 'opalestate_amt_icon', true ) ) {
|
||||
echo '<span class="amenity-icon"><i class="' . esc_attr( $icon ) . '"></i></span>';
|
||||
} elseif ( $image_id = get_term_meta( $amenity->term_id, 'opalestate_amt_image_id', true ) ) {
|
||||
echo wp_get_attachment_image( $image_id );
|
||||
}
|
||||
?>
|
||||
<?php echo esc_html( $amenity->name ); ?>
|
||||
<?php if ( has_term( $amenity->term_id, 'opalestate_amenities', $post ) ) : ?>
|
||||
<?php echo apply_filters( 'opalestate_amenity_check_icon', '<i class="fa fa-check"></i>' ); ?>
|
||||
<?php else : ?>
|
||||
<?php echo apply_filters( 'opalestate_amenity_uncheck_icon', '<i class="fa fa-check"></i>' ); ?>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
</div>
|
||||
<?php endforeach; ?>
|
||||
</div>
|
||||
|
||||
@@ -2,9 +2,13 @@
|
||||
global $property;
|
||||
|
||||
$infos = $property->get_meta_fullinfo();
|
||||
$taxs = $property->get_types_tax();
|
||||
$taxs = $property->get_types_tax();
|
||||
|
||||
if ( ! $infos && ! $taxs ) {
|
||||
return;
|
||||
}
|
||||
?>
|
||||
|
||||
<div class="property-information box-inner-summary">
|
||||
<h5><?php esc_html_e( 'Quick Information', 'opalestate-pro' ); ?></h5>
|
||||
<div class="box-content">
|
||||
@@ -33,4 +37,4 @@ $taxs = $property->get_types_tax();
|
||||
<?php endif; ?>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -5,15 +5,18 @@ if ( ! $property->get_block_setting( 'video' ) ) {
|
||||
return;
|
||||
}
|
||||
|
||||
$videoURL = $property->get_video_url();
|
||||
$video_url = $property->get_video_url();
|
||||
|
||||
if ( ! $video_url ) {
|
||||
return;
|
||||
}
|
||||
?>
|
||||
<?php if ( $videoURL ) : ?>
|
||||
|
||||
<div class="opalestate-box-content property-video-session">
|
||||
<h4 class="outbox-title" id="block-video"><?php esc_html_e( 'Video', 'opalestate-pro' ); ?></h4>
|
||||
<div class="opalestate-box">
|
||||
<div class="box-info">
|
||||
<?php echo wp_oembed_get( $videoURL ); ?>
|
||||
<?php echo wp_oembed_get( $video_url ); ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
@@ -1,15 +1,22 @@
|
||||
<?php
|
||||
global $property;
|
||||
|
||||
$virtualTour = $property->get_virtual_tour();
|
||||
if ( ! $property->get_block_setting( 'virtual_tour' ) ) {
|
||||
return;
|
||||
}
|
||||
|
||||
$virtual_tour = $property->get_virtual_tour();
|
||||
|
||||
if ( ! $virtual_tour ) {
|
||||
return;
|
||||
}
|
||||
?>
|
||||
<?php if( $virtualTour ) : ?>
|
||||
|
||||
<div class="opalestate-box-content property-360-virtual-session">
|
||||
<h4 class="outbox-title" id="block-tour360"><?php esc_html_e( '360° Virtual Tour', 'opalestate-pro' ); ?></h4>
|
||||
<h4 class="outbox-title" id="block-tour360"><?php esc_html_e( '360° Virtual Tour', 'opalestate-pro' ); ?></h4>
|
||||
<div class=" opalestate-box">
|
||||
<div class="box-info">
|
||||
<?php echo do_shortcode( $virtualTour ); ?>
|
||||
<?php echo do_shortcode( $virtual_tour ); ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
Reference in New Issue
Block a user