biswajeet
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Mobile?Yep thats right. You need responsive theme. Additionally you might have to adjust the css for CF7 fileds…
Forum: Plugins
In reply to: [Contact Form 7] Mobile?Can we have your link to check…
The particular shortcode you are using is not executed and hence the result plain text codes are displayed. What is the used of that shortcode and for which plugin…? Additionally, you can checkout the support thread for that plugin too as well raise your problem there.
This is a shortcode issue…
The features you are looking is called field dependency and currently CF doesn’t have any such thing built-in out of box.
Forum: Plugins
In reply to: [Contact Form 7] Add solution for 3rd party integration and managing errorsThanks. btw, messages are already customizable…
Forum: Plugins
In reply to: [Contact Form 7] How to track multiple events?Nope, you can’t track events in CF7. On receiving the submitted data, you have to figure out the visitors actions depending how your form is constructed.
Forum: Plugins
In reply to: [Contact Form 7] Not doing the slick AJAX (Sent Mail) thingHi, your theme loading content through ajax and the contact form7 doesn’t support this feature at all. Thus it is simply not possible unless you write special codes to handle such cases!
Forum: Plugins
In reply to: [Contact Form 7] Using shortcode in HTML file? Not workingTrying to add a contact form into raw HTML but the shortcode isn’t working. How can I do this?
[contact-form-7 id=”1914″ title=”Quote”]
What do you mean by Using shortcode in HTML file? You should write a clear details about your problem…
Forum: Plugins
In reply to: [Contact Form 7] Messed up styling of File Attachment fieldThis is normal. For file input field css is some what limited for different browser!
Forum: Plugins
In reply to: [Contact Form 7] Please fill the required field issueTry fixing your css issue.
Forum: Plugins
In reply to: [Contact Form 7] Spinning arrow icon shows foreverSymptoms for script error. And obviously this leads incomplete send operation & hence no email!
Forum: Plugins
In reply to: [Contact Form 7] Disable Ability to extend "your message box"Use css textarea resize property…
Forum: Plugins
In reply to: [Contact Form 7] If StatementYou need to do that outside CF7 by parsing and regenerating the form through custom jquery programming. This way you can create field dependency as well multi step form submission. Currently cf7 core doesn’t have these features right out of box!
Forum: Plugins
In reply to: [Contact Form 7] Contact Form Email Field Looks Different Than Other Fields@tkaminja you need to fix a couple of style rules in your theme css. Here you go –
.wpcf7-form input[type="text"], input[type="email"], .wpcf7-form input[type="password"] { max-width: 420px; } .wpcf7-form input[type="text"], input[type="email"], .wpcf7-form input[type="password"], .wpcf7-form textarea { -moz-box-sizing: border-box; width: 100%; } input[type="text"], input[type="email"], input[type="password"], textarea { box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) inset; padding: 6px; } input[type="text"], input[type="email"], input[type="password"], textarea, select { background: none repeat scroll 0 0 #F9F9F9; border: 1px solid #AAAAAA; border-radius: 4px 4px 4px 4px; color: #555555; font-family: Arial,sans-serif; font-size: 12px; }
enjoy ??