bgermann
Forum Replies Created
-
Forum: Plugins
In reply to: [cformsII] CformsII And Email ForwarderHow do you send the emails from cformsII? Do you use any plugin to tweak wp_mail() to not using PHP’s mail() function? If not, I would give WP Mail SMTP plugin a try.
Forum: Plugins
In reply to: [cformsII] Processing, please wait@mikey79 your 2nd and 3rd posts sound like a caching issue. There are no POST requests to lib_ajax.php in cformsII 14.12. You should check that the cforms.admin.js and cforms.js you receive in your browser are the same as the files on your host. Maybe you have some caching plugin installed that messes up.
I would expect the fatal errors in your other posts in the described scenarios.
Forum: Plugins
In reply to: [cformsII] Required boxes are not preventing form submissionIf you have any cache plugin installed, please deactivate it and try again.
Forum: Plugins
In reply to: [cformsII] Required boxes are not preventing form submissionA URL with a form would be very helpful.
Forum: Plugins
In reply to: [cformsII] Auto ConfirmationSo do you have a field labeled “Your Name” in your form?
Forum: Plugins
In reply to: [cformsII] CAPTCHA Image Load / View and usability?!Actually the cursor CSS is included in all the themes in 14.12. If you have a custom theme, you have to add it there. There is no common “main style”.
I take care of the animation for the next version.
Forum: Plugins
In reply to: [cformsII] Recent cforms entries on Dashboard is emptyDid you enable “Show new entries on dashboard” in the form’s settings that you want to be shown?
Forum: Plugins
In reply to: [cformsII] Unable to save changes on formPlease upgrade to the current version. Version 14.6 has known security issues and is not compatible to current WordPress versions.
Forum: Themes and Templates
In reply to: [i-excel] Outdated version of TGM Plugin ActivationThanks for updating.
Forum: Plugins
In reply to: [cformsII] How to create a Multi step form with cforms ?You find it in the cformsII menu in your Dashboard.
Forum: Plugins
In reply to: [cformsII] Site Conflict & Samsung Phone IssueNow you seem to have it disabled. If I cannot check the error, I cannot help you. Most probably it is some JavaScript error (you can find those in your browser’s console).
But I see two issues on your site not related to the described one:
Something on your site references http://www.testing.studiorepublic.com.au/wp-content/uploads/2015/05/IMG_2137_lowres-1024×683-1.jpg which is not available.
You have probably unwanted information disclosure by indexing http://www.studiorepublic.com.au/wp-content/plugins/cforms/attachments
Forum: Plugins
In reply to: [cformsII] How to create a Multi step form with cforms ?You can. Please read the “Multi page forms” section in Help!
Forum: Plugins
In reply to: [cformsII] Admin email css where to customise?You look for a table called wp_options by default. You search that table for the option_name cforms_settings. The SQL to print out its value is
select option_value from wp_options where option_name='cforms_settings';. The value is a PHP serialized array, which you have to take care of when changing the [‘global’][‘cforms_style’][‘key_td’] value.Forum: Plugins
In reply to: [cformsII] Problem with limit cahracters in fieldYou should write
^[0-9]{5}$as a regex (square brackets). To limit 20 to 22 characters use^.{20}.?.?. The dot also includes whitespace and special characters.Forum: Plugins
In reply to: [cformsII] Site Conflict & Samsung Phone Issue1. You seem to have it activated and I can use your site. What is the conflict you are talking about?
2. + 3. cformsII is not in a state yet where I want to put effort in mobile compatibility. Its main reason for now is to keep it running in the state the original developer gave it up and simplify the code base. But if anyone would contribute some responsive theme, I will be glad to include it.