Hi there,
How do I move the contact form to appear above the page content (rather than below)?
Thanks!
Hi there,
How do I move the contact form to appear above the page content (rather than below)?
Thanks!
Open up wp-content\themes\replete\includes\loop-page.php and remove following code:
if(isset($post->ID) && $contact_page_id == $post->ID && !post_password_required()) get_template_part( 'includes/contact-form' );
Then replace:
the_content(__('Read more','avia_framework').'<span class="more-link-arrow"> →</span>');
with
if(isset($post->ID) && $contact_page_id == $post->ID && !post_password_required()) get_template_part( 'includes/contact-form' );
the_content(__('Read more','avia_framework').'<span class="more-link-arrow"> →</span>');You must log in to post.