Tagged: 

Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #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

    #459012

    Hey 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ünter

    #459026

    Hello
    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 !
    Olivier

    #459028
    .contac_us_img {
      display: none!important;
    }
    #459045

    Hi!


    @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,
    Yigit

    #459050

    Hey 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,

    #459106

    Thank 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 regards

    #459811

    Hi @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!
    Rikard

    #459954

    Rikard. Thank you very luch for your help and for your response.
    Best regards,
    Olivier

    #460535

    Hi!

    Glad we could help, please start your own thread for future questions or problems.

    Regards,
    Rikard

    #461349

    Hi,

    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
    Claudio

    #462183

    Hi 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

Viewing 12 posts - 1 through 12 (of 12 total)
  • You must be logged in to reply to this topic.