bgermann
Forum Replies Created
-
Forum: Plugins
In reply to: [cformsII] Admin email css where to customise?You can customize it in the database. The cforms_settings WordPress option is an array, which contains the css at index
['global']['cforms_style']['key_td'].Forum: Plugins
In reply to: [cformsII] Processing, please waitCan you post the (redacted) response here?
Forum: Plugins
In reply to: [cformsII] adding a capitcha to the formI implemented it as it took only little time. I would not suggest anybody to use any Google service, but here you go: https://github.com/mcguffin/wp-recaptcha-integration/pull/67
This is the changeset to make WP reCaptcha Integration plugin work with cformsII. I hope the developer will include it soon, for now you can patch it yourself or just download from https://github.com/bgermann/wp-recaptcha-integration/archive/master.zip
Forum: Plugins
In reply to: [cformsII] adding a capitcha to the formhttps://wordpress.org/support/topic/cformsii-recaptcha
If you can write some PHP, you can use the pluggable CAPTCHA API to implement recaptcha yourself.
Forum: Plugins
In reply to: [cformsII] select fields connectedPlease use the first mail address in https://pgp.mit.edu/pks/lookup?search=0xB66B836F0A046D76
Maybe we can arrange something.
Forum: Plugins
In reply to: [cformsII] Form not visible – PHP 5.6 problem?Please check if you have set dates when to show the form. If so, are they in the correct (uncommom) format?
Forum: Plugins
In reply to: [cformsII] adding a capitcha to the formYou should use the forum search. This question was asked several times before. Short answer: There is no built-in way.
Forum: Plugins
In reply to: [cformsII] select fields connectedThere is no built-in feature to do this.
Forum: Plugins
In reply to: [cformsII] Form not visible – PHP 5.6 problem?No, I am not aware of PHP 5.6 issues. Actually I test with PHP 5.6. What do you mean by “max settings”? Do you have session extensions installed?
Do you get any PHP error or warning? See https://codex.wordpress.org/Debugging_in_WordPress how to enable them.
Forum: Plugins
In reply to: [cformsII] Performance issuesThere is an option for it in the global settings.
Forum: Plugins
In reply to: [cformsII] Not able to use image based CapcthaDo you want a CAPTCHA for cformsII (which this forum is about) or for Contact Form 7? If you want one for cformsII, you should read in readme.txt about related plugins.
Forum: Plugins
In reply to: [cformsII] Allowed file extensions for File uploadpdf,zip,txt
There was such an option, but I removed it for security considerations. Most people do not know which files their webserver would execute and would not be able to blacklist accordingly.
Forum: Plugins
In reply to: [cformsII] Processing, please waitDo you see any POST request to https://yoursite.example/wp-admin/admin-ajax.php on your browser’s network inspection? There should be such a n AJAX request returning XML. Do you see any JavaScript errors in the browser’s console?
Forum: Plugins
In reply to: [cformsII] Automatic Total Option?An ugly solution is just to paste it in one of the field’s titles, surrounded by <script>…</script> tags. There are better solutions, like loading it in a *.js file on exactly that page, but you would have to figure it out by yourself or search the web.
Forum: Plugins
In reply to: [cformsII] Automatic Total Option?With jQuery, which is included in WordPress, so you do not have to load it additionally, the core lines would look like
var offsets = [11,12,15,16,17]; var changehandler = function () { var sum = 0; for (var i = 0; i < offsets.length; i++) { sum += jQuery('#cf_field_' + offsets[i]).val(); } jQuery('#cf_field_19').val(sum); }; for (var i = 0; i < offsets.length; i++) { jQuery('#cf_field_' + offsets[i]).change(changehandler); }