File Editor
Directories:
.. (Back)
ai-app
cloud
common
core
epanel
fonts
framework
images
includes
lang
scripts
Files:
changelog.txt
comments.php
footer.php
functions.php
header.php
home.php
index-content.php
index.php
module-ads.php
module-featured-posts-slider.php
module-posts-blog-feed-loop.php
module-posts-blog-feed.php
module-posts-carousel.php
module-posts-content.php
module-posts.php
module-tabbed-posts-tab.php
module-tabbed-posts.php
options_extra.php
page-template-authors.php
page-template-blog-feed.php
page-template-contact.php
page-template-fullwidth.php
page-template-member.php
page-template-portfolio.php
page-template-sitemap.php
page-template-timeline.php
page.php
post-top-content.php
post_thumbnails_extra.php
sidebar-footer.php
sidebar.php
single-et_pb_layout.php
single-post.php
single-project.php
single.php
style-cpt-rtl.min.css
style-cpt.min.css
style-rtl.min.css
style-static-cpt-rtl.min.css
style-static-cpt.min.css
style-static-rtl.min.css
style-static.min.css
style.css
style.min.css
theme-after-wrappers.php
theme-before-wrappers.php
theme-footer.php
theme-header.php
timeline-posts-content.php
Create New File
Create
Edit File: page-template-contact.php
<?php /* Template Name: Contact */ get_header(); ?> <div id="main-content"> <div class="container"> <div id="content-area" class="<?php extra_sidebar_class(); ?> clearfix"> <div class="et_pb_extra_column_main"> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <div class="et_extra_other_module contact-box"> <div class="contact-content"> <h2><?php the_title(); ?></h2> <?php the_content(); ?> <?php if ( ! extra_is_builder_built() ) { wp_link_pages( array( 'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'extra' ), 'after' => '</div>', ) ); } ?> <?php $contact_page_options = extra_get_contact_page_options(); ?> <?php if ( !empty( $contact_page_options['map_lat'] ) && !empty( $contact_page_options['map_lng'] ) ) { ?> <div class="contact-map" data-zoom="<?php echo esc_attr( $contact_page_options['map_zoom'] ); ?>" data-lat="<?php echo esc_attr( $contact_page_options['map_lat'] ); ?>" data-lng="<?php echo esc_attr( $contact_page_options['map_lng'] ); ?>"></div> <?php } ?> <form class="contact-form extra-contact-form" method="post"> <h3><?php echo esc_html( $contact_page_options['title'] ); ?></h3> <div class="message"><?php $message = extra_contact_form_submit(); if ( !empty( $message ) ) { printf(' <p class="%s">%s</p>', esc_attr( $message['type'] ), esc_html( $message['message'] ) ); } ?></div> <div class="field first"> <input id="contact_name" name="contact_name" type="text" placeholder="<?php esc_attr_e( 'Name', 'extra' ); ?> *" data-label="<?php esc_attr_e( 'Name', 'extra' ); ?>" /> </div> <div class="field"> <input id="contact_email" name="contact_email" type="email" placeholder="<?php esc_attr_e( 'Email', 'extra' ); ?> *" /> </div> <div class="field last"> <input id="contact_subject" name="contact_subject" type="text" placeholder="<?php esc_attr_e( 'Subject', 'extra' ); ?>" /> </div> <textarea id="contact_message" name="contact_message" placeholder="<?php esc_attr_e( 'Message', 'extra' ); ?>"></textarea> <button type="submit" name="et_extra_submit_button" class="submit"><?php esc_html_e( 'Send', 'extra' ); ?><span class="loader"><?php extra_ajax_loader_img(); ?></span></button> <input type="hidden" id="action" name="action" value="extra_contact_form_submit" /> <?php wp_nonce_field( 'extra-contact-form', 'nonce_extra_contact_form' ); ?> </form><!-- /.contact-form --> </div><!-- /.contact-content --> </div><!-- /contact-box --> <?php endwhile; else : ?> <h2><?php esc_html_e( 'Post not found', 'extra' ); ?></h2> <?php endif; ?> <?php if ( comments_open() || get_comments_number() ) { comments_template( '', true ); } ?> </div><!-- /.et_pb_extra_column.et_pb_extra_column_main --> <?php get_sidebar(); ?> </div> <!-- #content-area --> </div> <!-- .container --> </div> <!-- #main-content --> <?php get_footer();
Save Changes
Rename File
Rename