<?php if ( ! isset( $_SESSION ) ) session_start();
/*
Template Name: Contact Page
*/
?>
<?php
$et_ptemplate_settings = array();
$et_ptemplate_settings = maybe_unserialize( get_post_meta(get_the_ID(),'et_ptemplate_settings',true) );
$fullwidth = isset( $et_ptemplate_settings['et_fullwidthpage'] ) ? (bool) $et_ptemplate_settings['et_fullwidthpage'] : false;
$et_regenerate_numbers = isset( $et_ptemplate_settings['et_regenerate_numbers'] ) ? (bool) $et_ptemplate_settings['et_regenerate_numbers'] : false;
$et_error_message = '';
$et_contact_error = false;
if ( isset($_POST['et_contactform_submit']) ) {
if ( !isset($_POST['et_contact_captcha']) || empty($_POST['et_contact_captcha']) ) {
$et_error_message .= '<p>' . esc_html__('Make sure you entered the captcha. ','TheStyle') . '</p>';
$et_contact_error = true;
} else if ( $_POST['et_contact_captcha'] <> ( $_SESSION['et_first_digit'] + $_SESSION['et_second_digit'] ) ) {
$et_numbers_string = $et_regenerate_numbers ? esc_html__('Numbers regenerated.','TheStyle') : '';
$et_error_message .= '<p>' . esc_html__('You entered the wrong number in captcha. ','TheStyle') . $et_numbers_string . '</p>';
if ($et_regenerate_numbers) {
unset( $_SESSION['et_first_digit'] );
unset( $_SESSION['et_second_digit'] );
}
$et_contact_error = true;
} else if ( empty($_POST['et_contact_name']) || empty($_POST['et_contact_email']) || empty($_POST['et_contact_subject']) || empty($_POST['et_contact_message']) ){
$et_error_message .= '<p>' . esc_html__('Make sure you fill all fields. ','TheStyle') . '</p>';
$et_contact_error = true;
}
if ( !is_email( $_POST['et_contact_email'] ) ) {
$et_error_message .= '<p>' . esc_html__('Invalid Email. ','TheStyle') . '</p>';
$et_contact_error = true;
}
} else {
$et_contact_error = true;
if ( isset($_SESSION['et_first_digit'] ) ) unset( $_SESSION['et_first_digit'] );
if ( isset($_SESSION['et_second_digit'] ) ) unset( $_SESSION['et_second_digit'] );
}
if ( !isset($_SESSION['et_first_digit'] ) ) $_SESSION['et_first_digit'] = $et_first_digit = rand(1, 15);
else $et_first_digit = $_SESSION['et_first_digit'];
if ( !isset($_SESSION['et_second_digit'] ) ) $_SESSION['et_second_digit'] = $et_second_digit = rand(1, 15);
else $et_second_digit = $_SESSION['et_second_digit'];
if ( ! $et_contact_error && isset( $_POST['_wpnonce-et-contact-form-submitted'] ) && wp_verify_nonce( $_POST['_wpnonce-et-contact-form-submitted'], 'et-contact-form-submit' ) ) {
$et_email_to = ( isset($et_ptemplate_settings['et_email_to']) && !empty($et_ptemplate_settings['et_email_to']) ) ? $et_ptemplate_settings['et_email_to'] : get_site_option('admin_email');
$et_site_name = is_multisite() ? $current_site->site_name : get_bloginfo('name');
$contact_name = sanitize_text_field( $_POST['et_contact_name'] );
$contact_email = sanitize_email( $_POST['et_contact_email'] );
$headers = 'From: ' . $contact_name . ' <' . $contact_email . '>' . "\r\n";
$headers .= 'Reply-To: ' . $contact_name . ' <' . $contact_email . '>';
wp_mail( apply_filters( 'et_contact_page_email_to', $et_email_to ), sprintf( '[%s] ' . sanitize_text_field( $_POST['et_contact_subject'] ), $et_site_name ), wp_strip_all_tags( $_POST['et_contact_message'] ), apply_filters( 'et_contact_page_headers', $headers, $contact_name, $contact_email ) );
$et_error_message = '<p>' . esc_html__('Thanks for contacting us','TheStyle') . '</p>';
}
?>
<?php get_header(); ?>
<?php get_template_part('includes/breadcrumbs'); ?>
<div id="content" class="clearfix<?php if($fullwidth) echo(' fullwidth');?>">
<?php if (get_option('thestyle_integration_single_top') <> '' && get_option('thestyle_integrate_singletop_enable') == 'on') echo(get_option('thestyle_integration_single_top')); ?>
<div id="left-area">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div id="post" class="post">
<div class="post-content clearfix">
<?php if (!$fullwidth) { ?>
<div class="info-panel">
<?php get_template_part('includes/infopanel'); ?>
</div> <!-- end .info-panel -->
<?php } ?>
<div class="post-text">
<h1 class="title"><?php the_title(); ?></h1>
<div class="hr"></div>
<?php the_content(); ?>
<?php wp_link_pages(array('before' => '<p><strong>'.esc_html__('Pages','TheStyle').':</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
<div id="et-contact">
<div id="et-contact-message"><?php echo($et_error_message); ?> </div>
<?php if ( $et_contact_error ) { ?>
<form action="<?php echo esc_url( get_permalink( get_the_ID() ) ); ?>" method="post" id="et_contact_form">
<div id="et_contact_left">
<p class="clearfix">
<label for="et_contact_name" class="et_contact_form_label"><?php esc_html_e('Name','TheStyle'); ?></label>
<input type="text" name="et_contact_name" value="<?php if ( isset($_POST['et_contact_name']) ) echo esc_attr($_POST['et_contact_name']); else esc_attr_e('Name','TheStyle'); ?>" id="et_contact_name" class="input" />
</p>
<p class="clearfix">
<label for="et_contact_email" class="et_contact_form_label"><?php esc_html_e('Email Address','TheStyle'); ?></label>
<input type="text" name="et_contact_email" value="<?php if ( isset($_POST['et_contact_email']) ) echo esc_attr($_POST['et_contact_email']); else esc_attr_e('Email Address','TheStyle'); ?>" id="et_contact_email" class="input" />
</p>
<p class="clearfix">
<label for="et_contact_subject" class="et_contact_form_label"><?php esc_html_e('Subject','TheStyle'); ?></label>
<input type="text" name="et_contact_subject" value="<?php if ( isset($_POST['et_contact_subject']) ) echo esc_attr($_POST['et_contact_subject']); else esc_attr_e('Subject','TheStyle'); ?>" id="et_contact_subject" class="input" />
</p>
</div> <!-- #et_contact_left -->
<div id="et_contact_right">
<p class="clearfix">
<?php
esc_html_e('Captcha: ','TheStyle');
echo '<br/>';
echo esc_attr($et_first_digit) . ' + ' . esc_attr($et_second_digit) . ' = ';
?>
<input type="text" name="et_contact_captcha" value="<?php if ( isset($_POST['et_contact_captcha']) ) echo esc_attr($_POST['et_contact_captcha']); ?>" id="et_contact_captcha" class="input" size="2" />
</p>
</div> <!-- #et_contact_right -->
<div class="clear"></div>
<p class="clearfix">
<label for="et_contact_message" class="et_contact_form_label"><?php esc_html_e('Message','TheStyle'); ?></label>
<textarea class="input" id="et_contact_message" name="et_contact_message"><?php if ( isset($_POST['et_contact_message']) ) echo esc_textarea($_POST['et_contact_message']); else echo esc_textarea( __('Message','TheStyle') ); ?></textarea>
</p>
<input type="hidden" name="et_contactform_submit" value="et_contact_proccess" />
<input type="reset" id="et_contact_reset" value="<?php esc_attr_e('Reset','TheStyle'); ?>" />
<input class="et_contact_submit" type="submit" value="<?php esc_attr_e('Submit','TheStyle'); ?>" id="et_contact_submit" />
<?php wp_nonce_field( 'et-contact-form-submit', '_wpnonce-et-contact-form-submitted' ); ?>
</form>
<?php } ?>
</div> <!-- end #et-contact -->
<div class="clear"></div>
<?php edit_post_link(esc_html__('Edit this page','TheStyle')); ?>
<?php if (get_option('thestyle_integration_single_bottom') <> '' && get_option('thestyle_integrate_singlebottom_enable') == 'on') echo(get_option('thestyle_integration_single_bottom')); ?>
<?php if (get_option('thestyle_468_enable') == 'on') { ?>
<?php if(get_option('thestyle_468_adsense') <> '') echo(get_option('thestyle_468_adsense'));
else { ?>
<a href="<?php echo esc_url(get_option('thestyle_468_url')); ?>"><img src="<?php echo esc_url(get_option('thestyle_468_image')); ?>" alt="468 ad" class="foursixeight" /></a>
<?php } ?>
<?php } ?>
</div> <!-- .post-text -->
</div> <!-- .post-content -->
</div> <!-- #post -->
<?php endwhile; endif; ?>
</div> <!-- #left-area -->
<?php get_sidebar(); ?>
</div> <!-- #content -->
<div id="content-bottom-bg"></div>
<?php get_footer(); ?>