Quantcast
Channel: WordPress.org Forums » [Contact Form 7] Support
Viewing all 49016 articles
Browse latest View live

Contact Form Issues


labels in the store randomly change to English

$
0
0

Replies: 1

After activating Contact Form 7, the labels in the store randomly change to English instead of German.

Form Setup – Gone WRong

$
0
0

Replies: 3

Hello,

I have a form with Contact Form 7 which was included in my theme. I’m working on one of the contact forms and I can’t for the life of me figure out what I’m doing wrong. I’m not getting the inputed data from the form in the email – I get what seems to be the placeholder text. Please see the attachments for more information. Can anyone help me out and tell me what I’m doing wrong?

The form itself:
[text* text-737 placeholder “Enter Name*”]
[email* email-887 placeholder “Email Address*”]
[tel* tel-75 placeholder “Phone Number*”]
[select* menu-414 multiple “Soft Washing (Homes)” “Pressure Washing (Wood/Concrete, etc)” “Graffiti Removal” “Roof Washing/Cleaning” placeholder “Select Service*”]
[textarea textarea-304 placeholder “Send Us any Comments or Questions”]
[submit “Submit”]

What I get as a result in the email:

From: [your-name]
Email [your-email]
Subject: [your-subject]
Message Body:
[your-message]

  • This topic was modified 11 hours, 12 minutes ago by geeyok.

Error When Submitting a Form

$
0
0

Replies: 1

When submitting a form on the website, it doesn’t go through and a red error message appears, informing to try again later.

I have tried configuring the captcha, reconfiguring the SMTP, redoing the form, and contacting the hosting provider, but I can’t resolve the issue.

Contact form 7 and Hubspot

$
0
0

Replies: 0

Hi 🙂
I am experiencing an issue with sorting form submissions from Contact Form 7 into separate sections in HubSpot. I am using CF7 and the HubSpot’s official WordPress plugin. Submissions from different forms on my WordPress site—”Free Trial,” “Book Demo,” and “Contact Form”—are all mixed together in HubSpot, instead of being categorized separately. The form ID does not include any ID i recognice from the WP site (example: .wpcf7-form, .mailchimp-ext-0.5.72, .submitting). Have anyoune experienced the same and how did you solve this? Is there a different plugin that works better? I have some WPForm with the same setup and that works fine.

there was an error trying to send your message. please try again later

$
0
0

Replies: 1

This error message keeps coming up and I am not getting my contact mail. Can you please recommend a fix?

Recaptcha v3 – error message with an orange border

Form Feedback Forbidden

$
0
0

Replies: 1

Still having issues with my Contact Form. It seems to be a bad interaction between Flamingo and Visual Composer. The VC guys have basically said they can’t / won’t help. I’d like to have Flamingo running (my solution thus far has necessarily been to disable it). Can anyone explain to a non-web-devleoper like me what would cause this response in the Dev Console:

index.js?ver=5.9.6:1 

Response {type: 'basic', url: 'https://www.irricad.com/wp-json/contact-form-7/v1/contact-forms/2356/feedback', redirected: false, status: 403, ok: false, …}
body
:
(...)
bodyUsed
:
false
headers
:
Headers {}
ok
:
false
redirected
:
false
status
:
403
statusText
:
"Forbidden"
type
:
"basic"
url
:
"https://www.irricad.com/wp-json/contact-form-7/v1/contact-forms/2356/feedback"

I’ve tried Googling but none of the solutions I’ve found have worked.


Form not submitting – endless spinning wheel

$
0
0

Replies: 2

Hi,

After click submit button, its keep spinning and form is not submitted.

Please advise, thank you.

Contact Form 7 & SMS

$
0
0

Replies: 0

I have everything set up and integrated for my form responses to be sent to me as a text. It looks great and gives me all of the info except for one field where the prospect can choose they type of service from a drop down menu. I have inserted menu-400 but that does not provide what the prospect chose, it only shows menu-400 in the text I receive. I tried using menu-400 multiple “Kitchen Cabinets” “Bathroom Cabinets” “Door & Drawer Replacement” “Other Painting Services” but that just shows menu-400 multiple “Kitchen Cabinets” “Bathroom Cabinets” “Door & Drawer Replacement” “Other Painting Services” in the text I receive. This is one of the most important fields in the form. Does anyone know what I can do to have the selected type of service come through in the text? I am using ClickSend if that is helpful

Dynamically Attach file to return mail based on custom field

$
0
0

Replies: 0

Hi all,
I have an interesting problem, concerning attachment files.
In a site, I have several portfolio pages that contain an application story. Each page only displays a small portion of the total story, ending with a button “download pdf”. This button triggers a popup with a contact form. The popup and form are unique for each application page, containing a download link to the pdf, which I enter in the Mail (2) >> File attachment field. This works great, but the more application pages we get, the more popups and form we have to generate. I’m searching for a good, sustainable solution to enable us to use one generic popup and contact form, where the file attachment link gets shortcode, where the button click action happens. Hope this sounds familiar to anybody and someone knows a good solution.

Thanks in advance!
Bye
shreyas

Files not attached to emails : issue with wpcf7_is_file_path_in_content_dir()

$
0
0

Replies: 0

Hi,

The functionality for controlling files attached to an email presents a problem when symbolic links are used for the uploads folder.

This is the case for us who use, for example, capistrano to deploy new revisions of the site: the upload folder is shared by these different revisions thanks to a symbolic link. In this case, using the realpath() function is not suitable.

Defining an absolute path for UPLOADS constant don’t work because it has to be concatenated with ABSPATH

The only way to fix this is to bypass the function.

Thank you

From admin@coderedtech.com

$
0
0

Replies: 0

For some strange reason, all mail sent from the form have the to field set to admin@coderedtech.com

I cant find where to fix this.

Using a default value an placeholder for “number”

$
0
0

Replies: 0

Hello everyone,

I’ve tried to read all about the number field, default values and tags, but either I don’t get how all this works correctly, or it just isn’t doing what I want.

My goal is to have a “number” input field, which displays a placeholder text of “100”. The user may or may not fill this field with a number. If he does, permitted range is between 30 and 500. If he doesn’t enter anything, I want “0” or an empty string (“”) to be submitted as default value.

I am using this in my Form:

[number monitor1-zoom min:30 max:500 placeholder "100"]

This partially works; the placeholder text is shown and the form doesn’t accept values lower than 30 or higher than 500. But in case the user isn’t entering anything, “100” is submitted.

No matter what I try: Either “100” is submitted or my default value is pre-entered to the field instead of the placeholder.
I tried the following:

[number monitor1-zoom min:30 max:500 placeholder "100" "30"]
[number monitor1-zoom min:30 max:500 placeholder "100" ""]
[number monitor1-zoom min:30 max:500 default:30 placeholder "100"]

With all 3 variants, “100” is submitted.

Please help.

Contact form 7 not submitting and not sending emails

$
0
0

Replies: 0

When i click on “NEXT” button it shows only spinning (loading), not moving to the next step nor send email of form. why its happening?


I want to change the word “select file”

$
0
0

Replies: 0

I want to change the word “select file”

Where can I do it?

email almost empty

$
0
0

Replies: 1

<label> Your name
[text* your-name autocomplete:name] </label>
<label> Your biz
[text* biz autocomplete:organization] </label>
<label> Your website
[text* web autocomplete:url] </label>
<label> Your phone
[text* phone autocomplete:tel] </label>
<label> Your email
[email* your-email autocomplete:email] </label>




What do you sell?<br>
[checkbox checkbox-370 use_label_element "Jewelry" "Mugs" "Shirts" "Other"]

<label> Tell us why you are different.
[textarea your-message] </label>



[submit "Submit"]

this is what i get …

	
From: [your-name] [your-email]
Subject: [your-subject]

Message Body:
[your-message]

--
This is a notification that a contact form was submitted on your website ([_site_title] [_site_url]).

Contact Form 7 error – cannot send from from website

$
0
0

Replies: 1

When filling the contact form on the website, customers get the error: There was an error trying to send your message. Please try again later. In a dark yellow box..
I then installed Capcha which I have not used before. This did not solve the issue. I have cleared all cache. I have deactivated the Contact Form 7 plugin. The issue is still there. The emails are received in Flamingo, so I can see them. They are not marked as SPAM! Any thoughts?

  • This topic was modified 9 hours, 51 minutes ago by stabilogolf.

maxlength help!

$
0
0

Replies: 3

I realised that for some reason now, contact form 7 is limiting the amount if characters in my website’s forms. I’ve read the topic on the relevant’s plugin page, but I cannot modify the form successfully to display correctly AND have the maxlength set to unlimited. This is my form:

[text* Name placeholder "Name*"]
[email* email-915 placeholder "Email*"]
[tel* Phone placeholder "Phone*"]
[select* how_did_you_hear_about us first_as_label "How Did You Hear About Us?*" "Google" "Social Media (Facebook, Instagram, Etc.)" "Word Of Mouth/Referral" "Other"]
[textarea* Message placeholder "Message*"]
[wpcaptcha wpcaptcha-619]

[submit "Submit"]

I’m trying to modify the textarea line to:

[textarea* Message placeholder "Message*" minlength:10 maxlength:140]

but the form doesn’t display correctly. Can someone help?

Contact Form Email printing input names

$
0
0

Replies: 0

Hello Team,

When I am sending the form fields in message body it is coming as [first-name], [last-name] etc. Actual values are not getting fetched.

Viewing all 49016 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>