1) No
2) You need to modify the page template a bit. Open up includes/loop-page.php and replace following code:
the_content(__('Read more →','avia_framework'));
//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(isset($post->ID) && $contact_page_id == $post->ID) get_template_part( 'includes/contact-form' );
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(isset($post->ID) && $contact_page_id == $post->ID) get_template_part( 'includes/contact-form' );
the_content(__('Read more →','avia_framework'));