Origin commit
This commit is contained in:
45
templates/messages/enquiry-form.php
Executable file
45
templates/messages/enquiry-form.php
Executable file
@@ -0,0 +1,45 @@
|
||||
<?php
|
||||
global $post;
|
||||
|
||||
$message = sprintf(__('Hi, I am interested in %s (Property ID: %s)', 'opalestate-pro'), get_the_title() , get_the_ID() );
|
||||
|
||||
$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';
|
||||
?>
|
||||
|
||||
<?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 : ?>
|
||||
<div class="opalestate-box-content property-equire-form">
|
||||
<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>
|
||||
<?php endif; ?>
|
||||
Reference in New Issue
Block a user