Good night I'm fascinated with the template , sorry for my english by the way. I have a mega super problem , i i cant recive my notifications from the form register, i follow the instructions for translate to spanish the contact sheet ( i dont use anything pluggin), but when i try to test it nothing send. and that was my mistake but the url was release :S i need ur support, if u need my user or pass of the ftp please send me a email,I really appreciate it it was ASAP, sorry for the troubles :S
the modifications was in the contact-form.php
<?php
/**
* The Contact form gets generated by the avia_form class located in framework/php/class-form-generator.php
*/
$form_args = array(
"heading" => "<h3>".__('Registro','avia_framework')."</h3>",
"success" => "<h3>".__('Te haz registrado con éxito!','avia_framework')."</h3><p>".__('Gracias por registrarte!','avia_framework')."</p>",
"submit" => __('Registrar','avia_framework'),
"action" => get_permalink(),
"myemail" => avia_get_option('email'),
"myblogname" => get_option('blogname'),
"autoresponder" => avia_get_option('autoresponder'),
"autoresponder_subject" => __('Gracias por tu registro!','avia_framework'),
"autoresponder_email" => avia_get_option('email')
);
//default elements
$elements = array(
'username' => array('type'=>'decoy', 'label'=>'', 'check'=>'must_empty'), //decoy input field for bots, input field gets hidden, if bot enters value form wont be submitted
);
//user defined elements from backend
$custom_elements = avia_get_option('contact-form-elements');
if(is_array($custom_elements))
{
foreach($custom_elements as $new_element)
{
$elements[strtolower( $new_element['label'] ) ] = $new_element;
}
}
if(avia_get_option('contact-form-captcha') === 'active')
{
$elements['age'] = array('type'=>'captcha', 'check'=>'captcha', 'label'=> __('Responde la pregunta:','avia_framework'));
}
$contact_form = new avia_form($form_args);
$contact_form->create_elements($elements);
$contact_form->display_form();
?>
maybe i do it wrong, im new in this :S














