Tagged: CONTACT FORM
-
AuthorPosts
-
June 12, 2015 at 9:43 am #458267
Hey,
The Contact form override some of the fields, perhaps because the labels are almost identical.
There are four input fields that are overwritten – if I change the label names or ‘make the name smaller’, they are not overwritten – see which fields there are problems with below.
I use Enfold 3.2, but it was also a problem with 3.15
Regards Pete
June 14, 2015 at 7:06 pm #459012Hey 2funky!
Thank you for using our theme.
Currently the maximum size of a contact form field name is limited to 30 characters. You canincrease this by adding the following in functions.php at the end:
function my_avf_form_el_name_length( $formID, $form_params) { return 50; } add_filter( 'avf_form_el_name_length', 'my_avf_form_el_name_length',10, 2);
Replace 50 with the value you need.
Cheers!
GünterJune 14, 2015 at 8:57 pm #459026Hello
First time here and I have a question: how can I get rid of the contact button that appears on the right side of my home page with a rocket picto ? see below in orange in the page
http://drcaubet.fr/
Many thanks !
OlivierJune 14, 2015 at 9:54 pm #459028.contac_us_img { display: none!important; }
June 14, 2015 at 11:38 pm #459045Hi!
@oliviermobikap Please refer to @borkent’s post above. You should add the code to Quick CSS field in Enfold theme options under General Styling tab
@borkent Thanks :)Best regards,
YigitJune 15, 2015 at 12:33 am #459050Hey Günter,
Thank you for quick support, Seems to work fine;)
Is there any reason that it is only set to 30 characters?
Regards Pete,
June 15, 2015 at 6:55 am #459106Thank you so much. It works perfectly. I spent weeks trying to see how to remove it. Thank you again.
One more question, what do I need to do to send the site to google. I understand there is a robot file. Thank you again and best regardsJune 16, 2015 at 5:10 am #459811Hi @olivermobikap!
All you should have to do is to claim the site in Google Webmaster Tools and submit an XML Sitemap so Google know what pages to crawl. You can use a site map plugin to generate the sitemap.
Cheers!
RikardJune 16, 2015 at 11:11 am #459954Rikard. Thank you very luch for your help and for your response.
Best regards,
OlivierJune 17, 2015 at 5:21 am #460535Hi!
Glad we could help, please start your own thread for future questions or problems.
Regards,
RikardJune 18, 2015 at 2:36 pm #461349Hi,
When entering an email address with a “+” sign the contact form is returning an error. With gmail, the “+” is a valid symbol and very useful to create multiple test email accounts.
Any way of validating this please?
Thanks
ClaudioJune 20, 2015 at 11:12 am #462183Hi Claudio,
Open js/shortcodes.js and look for line:
if(!value.match(/^[\w|\.|\-]+@\w[\w|\.|\-]*\.[a-zA-Z]{2,20}$/))
Replace it by this:
if(!value.match(/^[\w|\.|\-|\+]+@\w[\w|\.|\-]*\.[a-zA-Z]{2,20}$/))
Regards,
Josue -
AuthorPosts
- You must be logged in to reply to this topic.