2019-09-20 12:36:01 +02:00
|
|
|
<?php
|
2019-09-10 06:27:33 +02:00
|
|
|
global $post;
|
|
|
|
|
2019-09-25 08:44:59 +02:00
|
|
|
if ( ! opalestate_get_option( 'enable_single_enquire_form' ) ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-09-20 12:36:01 +02:00
|
|
|
$message = sprintf( __( 'Hi, I am interested in %s (Property ID: %s)', 'opalestate-pro' ), get_the_title(), get_the_ID() );
|
2019-09-10 06:27:33 +02:00
|
|
|
|
2019-09-20 12:36:01 +02:00
|
|
|
$property_id = get_the_ID();
|
|
|
|
$heading = esc_html__( 'Enquire about property', 'opalestate-pro' );
|
|
|
|
$object = OpalEstate_User_Message::get_instance();
|
|
|
|
$fields = $object->get_equiry_form_fields( $message );
|
|
|
|
$form = OpalEstate()->html->render_form( $fields );
|
|
|
|
|
|
|
|
$id = 'send-enquiry-form';
|
2019-09-10 06:27:33 +02:00
|
|
|
?>
|
|
|
|
|
2019-09-20 12:36:01 +02:00
|
|
|
<?php if ( isset( $nowrap ) && $nowrap ) : ?>
|
|
|
|
<form method="post" class="opalestate-message-form">
|
|
|
|
<?php do_action( 'opalestate_message_form_before' ); ?>
|
|
|
|
|
|
|
|
<?php echo $form; ?>
|
|
|
|
|
|
|
|
<?php do_action( 'opalestate_message_form_after' ); ?>
|
|
|
|
<?php wp_nonce_field( $id, 'message_action' ); ?>
|
|
|
|
<button class="button btn btn-primary btn-3d" data-loading-text="<i class='fa fa-circle-o-notch fa-spin'></i> <?php esc_html_e( ' Processing', 'opalestate-pro' ); ?>" type="submit"
|
|
|
|
name="contact-form"><?php echo esc_html__( 'Send message', 'opalestate-pro' ); ?></button>
|
|
|
|
</form>
|
|
|
|
<?php else : ?>
|
2019-09-25 08:44:59 +02:00
|
|
|
<div class="opalestate-box-content property-enquire-form">
|
2019-09-20 12:36:01 +02:00
|
|
|
<div class="opalestate-box">
|
|
|
|
<div class="property-equire-form-container">
|
|
|
|
<h5 class="contact-form-title"><?php echo $heading; ?></h5>
|
|
|
|
<div class="box-content">
|
|
|
|
<form method="post" class="opalestate-message-form">
|
|
|
|
<?php do_action( 'opalestate_message_form_before' ); ?>
|
|
|
|
|
|
|
|
<?php echo $form; ?>
|
|
|
|
|
|
|
|
<?php do_action( 'opalestate_message_form_after' ); ?>
|
|
|
|
<?php wp_nonce_field( $id, 'message_action' ); ?>
|
|
|
|
<button class="button btn btn-primary btn-3d" data-loading-text="<i class='fa fa-circle-o-notch fa-spin'></i> <?php esc_html_e( ' Processing', 'opalestate-pro' ); ?>"
|
|
|
|
type="submit" name="contact-form"><?php echo esc_html__( 'Send message', 'opalestate-pro' ); ?></button>
|
|
|
|
</form>
|
|
|
|
</div><!-- /.agent-contact-form -->
|
|
|
|
</div><!-- /.agent-contact-->
|
|
|
|
</div>
|
|
|
|
</div>
|
2019-09-10 06:27:33 +02:00
|
|
|
<?php endif; ?>
|