hansg19
Forum Replies Created
-
Forum: Plugins
In reply to: [Fast Secure Contact Form] Regex Validation Test Fails for IBANIt’s working!
Thank you so much!
Have a nice weekend.
Hans
Forum: Plugins
In reply to: [Fast Secure Contact Form] Regex Validation Test Fails for IBANYes, that’s correct. You’ve got me 😉
Forum: Plugins
In reply to: [Fast Secure Contact Form] Regex Validation Test Fails for IBANI put the regex code in that field (“Regex Validation”):

After entering a valid IBAN i get the message configured in the field “Regex fail message”.Forum: Plugins
In reply to: [Fast Secure Contact Form] Regex Validation Test Fails for IBANHi mbrsolution,
there is no system error. I get the configured REGEX Failure configured for that specific formular field. Other Rregex validated fields in the formular are working well.Is such a failure also logged anywhere? If yes where?
Regards
Forum: Plugins
In reply to: [Contact Form DB] Login page for Export-URLWorks well. Thank you!
Forum: Plugins
In reply to: [Fast Secure Contact Form] Adding hidden fields for mail contentSOLVED
Forum: Plugins
In reply to: [Fast Secure Contact Form] Adding hidden fields for mail contentI found a solution which unfortunally need to edit the file ./includes/class-fscf-process.php
I’ve added 2 lines:
// ********* Now process the fields set up in Options ********** $fields_in_use = array(); // ****Part 1 of sulution: Add the field labels which have to be hidden to a array**** $fields_hide = array("An:","Titel:","Telefon:","Kontoinhaber:","Kontonummer:","Bankleitzahl:","Bankinstitut:","Anrede:","Straße:","Hausnummer:","PLZ:","Ort:","Email:"); // ****End of Part 1**** foreach ( self::$form_options['fields'] as $key => $field ) { if ( 'true' == $field['disable'] || 'fieldset-close' == $field['type'] ) continue; // ****Part 2 of sulution: Skip hidden fields**** if(in_array($field['label'],$fields_hide)) continue; // ****End of Part 2**** $fields_in_use[$field['slug']] = 1; if ( 'fieldset' == $field['type'] ) { self::$email_msg .= self::make_bold($field['label']) . $inline_or_newline; continue; }Forum: Plugins
In reply to: [Fast Secure Contact Form] Adding hidden fields for mail content@mbrsolution: have you heard any news from the developer?
Forum: Plugins
In reply to: [Fast Secure Contact Form] Adding hidden fields for mail contentHi,
there’s unfortunately no helpful answer in the documentation.
Is there anyone in the forum who had a similar issue? I don’t think that this is a support issue because the function to hide fields is given and I just don’t understand how to use it.Can anyone tell me what output of
$_SESSION["fsc_shortcode_hidden_$frm_id"]looks like? I’m not used in debugging php code 🙁Thanks