Open up includes/loop-page.php and delete following code:
//check if this is the contact form page, if so display the form
$contact_page_id = avia_get_option('email_page');
//wpml prepared
if (function_exists('icl_object_id'))
{
$contact_page_id = icl_object_id($contact_page_id, 'page', true);
}
if($contact_page_id == $post->ID) get_template_part( 'includes/contact-form' );
Then replace following code:
//display the actual post content
the_content(__('Read more →','avia_framework'));
with:
//check if this is the contact form page, if so display the form
$contact_page_id = avia_get_option('email_page');
//wpml prepared
if (function_exists('icl_object_id'))
{
$contact_page_id = icl_object_id($contact_page_id, 'page', true);
}
if($contact_page_id == $post->ID) get_template_part( 'includes/contact-form' );
//display the actual post content
the_content(__('Read more →','avia_framework'));