bgermann
Forum Replies Created
-
Forum: Plugins
In reply to: [cformsII] CSS for updated pluginSetting “form width” would apply only to forms which do not have any width set. You should copy the plugins/cforms2/styling/wide_form.css that you use to plugins/cforms-custom/wide_form.css and adjust the
url(../images/button-bg.gif)tourl(../cforms2/images/button-bg.gif).To set the right width for your form’s input elements you should have a look at the following section in the CSS file:
.cform textarea, .cform input { width:415px; } .cform select { width:421px; /* attempt to have equal length */ }Additionally, you should remove the background line in
.cform labelrule.Forum: Plugins
In reply to: [cformsII] PHP7 errorsYou run an old cformsII version. Please download a current version, which is PHP 7 compatible.
Forum: Plugins
In reply to: [cformsII] CSS for updated pluginThe cforms theme settings are not in Global Settings, they have their own menu item in the cforms menu, called “Styling”. It is not hard to find… On your demo site the current cforms theme is wide_open_no_border.
But – as I said – you can disable that theme for some pages, which you do in Global settings at first item “Include cforms header…”. Maybe the live site uses this feature.
If you gave me a link (not just a screenshot) to live site, I could tell you what is the case there.
Forum: Plugins
In reply to: [cformsII] CSS for updated pluginIf there is no additional theme in cforms-custom directory that the live site uses, they either have customized a stock theme (just look in the theme settings which one is activated) or they disabled the cforms theme for various (or all) pages. You can do that in global settings.
Forum: Plugins
In reply to: [cformsII] CForms newest version with really old WP version?The thing that causes 3.9+ compatibility is one function that is called if you enable the editor button. So you should disable at least that if you want to try, but I guess there are other functions of more recent WordPress versions as well.
Forum: Plugins
In reply to: [cformsII] wp_mail function error with cforms2First: Did you read cformsII’s FAQ about email? Have you tried any of the mentioned plugins?
The error message in cformsII has a slightly different wording. I guess you translated it from your language.
How do you send emails in WordPress generally? I.e. do you use any plugin or does WordPress send emails out of the box? Is the sender’s email address the same for your cforms form as for your WordPress installation? Where is your site hosted?
Forum: Plugins
In reply to: [cformsII] show form on siteI can see a form on your example page.
Forum: Plugins
In reply to: [cformsII] Allow more than 2 asterisk’s in fieldsI cannot reproduce your issue. You should give more details on your form configuration.
Forum: Plugins
In reply to: [cformsII] file cannot been send as attachmentDo you reveice an email with correct field set, but without an attachment, or don’t you receive any email?
Forum: Plugins
In reply to: [cformsII] allowed file typesPlease open another issue for it.
Forum: Plugins
In reply to: [cformsII] custom htmlYou cannot manipulate the HTML that way. But you can use CSS to style the form.
Forum: Plugins
In reply to: [cformsII] allowed file typesJust look at the per-form settings. The default is “no file types allowed”, you have to add some file endings.
Forum: Plugins
In reply to: [cformsII] Auto onfirmation e-mails don't workYour described configuration works for me. I get an autoconfirmation email. Do you have any “CC me” field? Checking it would disable the autoconfirmation.
Do you know your mail setup works for cformsII?
Forum: Plugins
In reply to: [cformsII] Own VariablesMaybe I will introduce a WordPress filter on the mails before sending them. Just watch the changelog in the upcoming versions.
Forum: Plugins
In reply to: [cformsII] Multiple ajax forms on a single pageActually two forms on one page do not share the same response div. The div id is named “usermessageNa” or “usermessageNb”, where N is the form’s id. If you have put two different forms (with different id) on the page, they should not behave like that. But if it is the same form (same id), which could be the case on your screenshot, this can be the case.