davmerit
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Conflict with Woocommerce PluginForum: Plugins
In reply to: [Contact Form 7] no answer when pushing the submit button (only ajax-loader)Suggest you run a JavaScript trace in Firebug to see where the JavaScript stops responding – see firebug logging
Forum: Plugins
In reply to: [Contact Form 7] No email received & red lines beneath "THANKS (SEND)"See I get error message with the red border.
Also see Contact Form 7 Email Issues. There is a link at the bottom of the page to a comprehensive and detailed article which covers many issues. Most people that work through this information appear to be able to resolve their email sending & receiving issues.
Forum: Plugins
In reply to: [Contact Form 7] half the output form the pop-up windowYou may flag your post as [resolved]
Forum: Plugins
In reply to: [Contact Form 7] Birth dateHow do I display the output in my mails?
You may display the month, day and year in your email as shown below
[menu-dob-month] [menu-dob-day] [menu-dob-year]Forum: Plugins
In reply to: [Contact Form 7] Boxes too large for mobile viewI have examined your form at the link provided.
Here is the code that I see
ERROR CODE:
@media (max-width: 25rem){ button, input[type="button"], input[type="reset"], input[type="submit"] { display: none; } }COREECTION CODE:
@media (max-width: 25rem){ .wpcf7-form .wpcf7-submit { display: block; } }Use Chrome Dev Tools to examine the HTML and CSS of your CF7 using the mobile view option. Once you understand how the HTML and CSS is configured in your CF7 form, you should be able to see the CSS changes you need to change the appearance of the form to suit your requirements.
Forum: Plugins
In reply to: [Contact Form 7] Value on submit buttonPlease include a link to your Contact Form 7 form plus all your input in the Form and Mail sections of the CF7 interface. If others here are able to understand your actual problem, they may be able to offer a possible solution.
Forum: Plugins
In reply to: [Contact Form 7] Problem with CF& on iphone….The actual look of CF7 forms on your website will depend largely on the current WordPress theme used and the CSS styling that theme applies to standard HTML form elements.
To change the style of your CF7 forms you would need to edit the CSS style sheets used by your WordPress theme.
Use Chrome Dev Tools to examine the HTML and CSS of your CF7 using the mobile view option. Once you understand how the HTML and CSS is configured in your CF7 form, you should be able to see the CSS changes you need to change the appearance of the form to suit your requirements.
You will have to use CSS media queries to make the appropriate changes to iphone screen size of your choice.
@media screen and (min-width: 480px) { //target the screen width of your choice wpcf7-form .wpcf7-textarea { background: #000; } }Add your CSS via Child Theme or use custom CSS plugin.
See Styling Contact Form for a general explanation of styling CF7 forms using CSS.
There is a link at the bottom of the page to a comprehensive and detailed article on Styling Contact Form 7 Forms. The article shows people, with suitable HTML & CSS skills, how to change the appearance of their Contact Form 7 Forms to meet their particular requirements.
Forum: Plugins
In reply to: [Contact Form 7] check boxYou may put the name attribute tag of the checkbox / drop down in your maul section.
For ecample if you have checkbox tag as follows,
[checkbox checkbox-950 "blue" "red"]
You can display the selected of option in your mail with the following tag
[checkbox-950]
See getting started with CF7 and setting up CF7 mailForum: Plugins
In reply to: [Contact Form 7] Boxes too large for mobile viewThe actual look of CF7 forms on your website will depend largely on the current WordPress theme used and the CSS styling that theme applies to standard HTML form elements.
To change the style of your CF7 forms you would need to edit the CSS style sheets used by your WordPress theme.
See Styling Contact Form for a general explanation of styling CF7 forms using CSS.
There is a link at the bottom of the page to a comprehensive and detailed article on Styling Contact Form 7 Forms. The article shows people, with suitable HTML & CSS skills, how to change the appearance of their Contact Form 7 Forms to meet their particular requirements.
Forum: Plugins
In reply to: [Contact Form 7] Sizing an email fieldThe overall size of the form elements is generally controlled by the CSS in your current WordPress theme rather than the “size” you use in the Form section of the CF7. This refers to the standard HTML size attribute which may or may not control overall element size.
To change the style of your CF7 forms you would need to edit the CSS style sheets used by your WordPress theme.
See Styling Contact Form for a general explanation of styling CF7 forms using CSS.
There is a link at the bottom of the page to a comprehensive and detailed article on Styling Contact Form 7 Forms. The article shows people, with suitable HTML & CSS skills, how to change the appearance of their Contact Form 7 Forms to meet their particular requirements.
Forum: Plugins
In reply to: [Contact Form 7] CSS styling for reCaptcha?Only the wrapper elements around the iframe can be styled and customized via CSS. Contact form 7 makes this easier to do by providing you with the ability to add a class and/or id attribute to the relevant CF7 tag – see http://contactform7.com/recaptcha/.
.rc-anchor-darkmay not be customizable via CSS see http://stackoverflow.com/questions/27713505/recaptcha-api-v2-styling.Forum: Plugins
In reply to: [Contact Form 7] half the output form the pop-up windowI have reviewed your form everything works fine. I got the “Ваше сообщение было отправлено успешно. Спасибо.” which translated for me as “Your message has been sent successfully . Thank you.”
But the problem is when if I use a pop-up window , then pressing the send button , nothing happens. Please tell me what I did wrong?
It seems to me that everything is working. Are you not receiving emails?Forum: Plugins
In reply to: [Contact Form 7] Value on submit buttonIf you need to change the value of the send button to “Tell Me More!”, just do it as follows
[submit "Tell Me More!"]See Submit Button
Forum: Plugins
In reply to: [Contact Form 7] Adding multiple classes to form elementsYou may set multiples class like this
[submit class:y2008 class:m01 class:d01]