-
AuthorPosts
-
April 9, 2014 at 8:23 pm #249376
Dear support team!
I have i would like tas ask for help about few things:
1. I would like to change to default tooltip color to any other color and also change the width of it. How is it possible?
2. When you click on a picture it is showed with lightbox. How can i change the lightbox background color(black) to any other color?
3. On contact page how can you set the default notification text (please, prove that you are
human…etc…) to other language. How and where can you edit it? There is a “?” character in the textbox. how can i remove it or change it to other text etc.?4. After you send an e-mail via Enfold you get a message with the subject “Thank you for your Message!” Where can you edit this text?
5. I see many gallery solutions in Enfold. There is one with 1 big picture and there are small ones in a line below it. Does it possible to make that line with small pictures to be scrollable if it contains more picture then the line would allow? With Arrows for example to navigate it to left or right.
Thank you very much for you help!
April 10, 2014 at 3:50 am #249567Hi Zheq!
Thank you for using the theme!
1.) Are you talking about the galley tooltip? You can add this on Quick CSS or custom.css:
.avia-tooltip { background: rgba(0, 0, 0, 0.8); }
Change the color value.
2.) Use this to change the lightbox overlay:
div.pp_overlay { background: red; }
3.) Edit config-templatebuilder > avia-shortcodes > contact.php, find this code on line 244:
$elements['avia_age'] = array('type'=>'captcha', 'check'=>'captcha', 'label'=> __('Please prove that you are human by solving the equation','avia_framework' ));
Replace the label something else:
$elements['avia_age'] = array('type'=>'captcha', 'check'=>'captcha', 'label'=> __('Please prove that you are an awesome dude by dancing around','avia_framework' ));
Edit framework > php > class-form-generator.php, find this code on line 520:
$this->elements_html .= " <span class='value_verifier_label'>$number_1 + $number_2 = ?</span>";
Replace the question mark sign with something else or remove it.
4.) Add something like this on functions.php to change the Thank you message:
add_filter( 'avia_contact_form_args', 'enfold_customization_autoresponsder', 10, 1); function enfold_customization_autoresponsder( $form_args ) { $form_args['autoresponder_subject'] = 'your text here'; return $form_args; }
5.) This feature is beyond the scope of support. Please find a plugin like NextGen Gallery or hire a freelance developer to add the feature for you.
It is easier for us if you ask or open a thread for each inquiry. Thanks!
Cheers!
IsmaelAugust 6, 2015 at 3:12 pm #483922Gday Enfold
Could I pls have someone check whether the code from point 4 above (contact form autoresponder subject line) actually does work? I can’t get it to work in my functions.php file. The default message still occurs.This was suggested by Ismael, but I can’t get it to work:
function avia_change_contact_form_args($form_args) { $form_args['autoresponder_subject'] = __('Thank you for being awesome!','avia_framework' ); return $form_args; }
I also tried the suggestion by Dude at: https://kriesi.at/support/topic/contact-form-customise-recipients-emails-subject/ but it didn’t work either:
add_filter('avf_form_subject','avia_change_mail_subject', 10, 3); function avia_change_mail_subject($subject, $new_post, $form_params) { $subject = 'My email subject'; return $subject; }
I have a child theme, with functions that are working for other aspects, but I can’t get either of these to work.
Thanks for any help you can provide me.
cheers
Darryl- This reply was modified 9 years, 3 months ago by itchybrain. Reason: Adding extra info after finding Dude's suggestion at https://kriesi.at/support/topic/contact-form-customise-recipients-emails-subject
August 6, 2015 at 3:24 pm #483944UPDATE: Elliot posed a solution that does work https://kriesi.at/support/topic/automatic-email/
Thanks Elliot!August 6, 2015 at 10:39 pm #484194Hey!
glad you are happy with Elliott’s solution. Let us know in a new ticket if you have some more questions or issues related to the theme. We are happy to assist you.
Best regards,
Andy -
AuthorPosts
- The topic ‘Few questions about Enfold settings’ is closed to new replies.