William Francis Ralloma
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Fields wont clickHi,
Your #bannertext element, is covering your field or form. Thus, it appears that you can’t click on it. Anyway, should you want to use #bannertext, you will have to place it on a different position, making sure it is not covering your form.
Forum: Plugins
In reply to: [Contact Form 7] height adjustmentHi,
I already responded to your other post and gave some pointers and head start. Have a nice day. Thanks
Forum: Plugins
In reply to: [Contact Form 7] media queryHi,
Thanks for the link. 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.
See Styling Contact Form 7 Forms for a general explanation of styling CF7 forms using CSS.
Use Firebug or Chrome Dev Tools to first understand and then change the CSS used for your CF7 form elements.
Hi,
Looks like you are looking for Conditional Logic which is not available directly in the Contact Form 7 plugin. It can be done via custom programming but you would need to be rather skilled at WordPress development using PHP and/or jQuery.
You could also consider using CF7 Skins Logic which allows you to add Conditional Logic to Contact Form 7 forms.
Thanks
Forum: Plugins
In reply to: [Contact Form 7] Contact Form 7 – Using checkboxesHi,
Looks like you are looking for Conditional Logic which is not available directly in the Contact Form 7 plugin. It can be done via custom programming but you would need to be rather skilled at WordPress development using PHP and/or jQuery.
You could also consider using CF7 Skins Logic which allows you to add Conditional Logic to Contact Form 7 forms.
Regarding sending of emails to specific persons, it still requires conditional logic, which contact form 7 does not support as of now.
Thanks
Forum: Plugins
In reply to: [Contact Form 7] How to align submit button to the leftHi,
?Thanks for providing me the URL of your form. Can you try this instead please?
?
?.wpcf7-submit {
float: left;
}
?
?ThanksForum: Plugins
In reply to: [Contact Form 7] I really can't figure how to set it upHi,
You’re welcome! Please find below the answers to your queries.
1. There is a general problem with Yahoo email addresses in Contact Form 7 forms (and lots of other applications) due to changes made by Yahoo to their DMARC security policy. See Yahoo DMARC Issue for more information.
2. I am not 100% sure, on what you meant by your reCaptcha image. It should look like this though
https://screencast.com/t/vdASpU1QlIYFor me to check what is on your site, can you provide the URL of your form please?
3. Yes, this is possible. You can use Mail 2 settings for this. Simply check the “Use mail (2)” box in your form configuration panel. Here’s a screenshot on where to see the Mail 2 option
Forum: Plugins
In reply to: [Contact Form 7] Numbers and Events not alignedHi,
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.
See Styling Contact Form 7 Forms for a general explanation of styling CF7 forms using CSS.
Forum: Plugins
In reply to: [Contact Form 7] Styling specific Contact Form – I've tried it all!Hi,
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.
See Styling Contact Form 7 Forms for a general explanation of styling CF7 forms using CSS.
Also, it appears that the media query of your CSS code affected much of the appearance of your form right now. You might want to modify this media query @media (min-width: 981px)
Hope that help.
Thanks
Forum: Plugins
In reply to: [Contact Form 7] Form change on input.Hi,
Looks like you are looking for Conditional Logic which is not available directly in the Contact Form 7 plugin. It can be done via custom programming but you would need to be rather skilled at WordPress development using PHP and/or jQuery.
You could also consider using CF7 Skins Logic which allows you to add Conditional Logic to Contact Form 7 forms.
Thanks
Hi,
Looks like you are looking for Conditional Logic which is not available directly in the Contact Form 7 plugin. It can be done via custom programming but you would need to be rather skilled at WordPress development using PHP and/or jQuery.
You could also consider using CF7 Skins Logic which allows you to add Conditional Logic to Contact Form 7 forms.
Forum: Plugins
In reply to: [Contact Form 7] height adjustmentHi,
Please include a link to your Contact Form 7 form so we can examine your form in detail using Firebug or Chrome Dev Tools to understand the CSS used for your CF7 form elements.
Once we understand how the HTML and CSS is configured in your CF7 form, we should be able to see the CSS changes you need to change the appearance of the form to suit your requirements.
Regarding your last query, yes it is possible to create a media query code to make your form responsive. You can add it via Child Theme or use custom CSS plugin
Forum: Plugins
In reply to: [Contact Form 7] Red Box ErrorHi,
The red border means that Contact Form 7 tried to send mail with wp_mail(), but it failed. To solve the issue, you need to find out the actual reason why it is failing in the first place.
There could be various reasons such as the mail setup wasn’t valid.
See also: Red Border Error Issue on WordPress 4.4.1The sending would also fail if the mail server was down, inaccessible or experiencing other problems. In this case, it will be more difficult to solve the issue by yourself. I would suggest you contact your host for support. They may be able to check the error logs to find out the reason for the failure.
In some cases, it is possible to solve this issue by using another mail server. Postman SMTP is one of the plugins that will help you do that.Thanks
Forum: Plugins
In reply to: [Contact Form 7] I really can't figure how to set it upHi,
Here’s an example contact form code you can use. First, login to your site and go to Contact > Add new form, then paste the following code below.
[text* YourName]<p>Your Name (required)
[text* your-name] </p><p>Your Email (required)
[email* your-email] </p><p>Subject
[select* your-subject “Question” “Suggestion” “Complaint” “Appreciation” “Link Exchange” “Other”]</p><p>Your Message
[textarea* your-message] </p><p>Attachment (Optional)
[file your-file] </p><p>[recaptcha]</p>
<p>[submit “Send”]</p>
To add your email address, click on the Mail tab under the contact form edit page, you should see there the option for your email address. See screenshot for example
https://screencast.com/t/2SWTcWLNBL2I or see Setting Up Mail.Please be advised, that it might not work if your host does not allow emails to be sent from other addresses.
Anyway, after you have done the steps above, save the contact form and copy the Contact form ID and add it on your page.
Hope that helps.
Thanks