Title: 0wordpress0user0's Replies | WordPress.org

---

# 0wordpress0user0

  [  ](https://wordpress.org/support/users/0wordpress0user0/)

 *   [Profile](https://wordpress.org/support/users/0wordpress0user0/)
 *   [Topics Started](https://wordpress.org/support/users/0wordpress0user0/topics/)
 *   [Replies Created](https://wordpress.org/support/users/0wordpress0user0/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/0wordpress0user0/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/0wordpress0user0/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/0wordpress0user0/engagements/)
 *   [Favorites](https://wordpress.org/support/users/0wordpress0user0/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 16 total)

1 [2](https://wordpress.org/support/users/0wordpress0user0/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/0wordpress0user0/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Conditional Fields for Contact Form 7] PHP 8.x warnings on REST API submissions — missing $_POST keys in cf7cf.php](https://wordpress.org/support/topic/php-8-x-warnings-on-rest-api-submissions-missing-_post-keys-in-cf7cf-php/)
 *  Thread Starter [0wordpress0user0](https://wordpress.org/support/users/0wordpress0user0/)
 * (@0wordpress0user0)
 * [1 month, 3 weeks ago](https://wordpress.org/support/topic/php-8-x-warnings-on-rest-api-submissions-missing-_post-keys-in-cf7cf-php/#post-18944124)
 * Thank you for addressing this.
 * I updated the plugin and tested a Contact Form 7 form submitted through the REST
   API that does not use Conditional Fields. The submission completed successfully,
   and the previous PHP 8.x undefined array key warnings no longer appear in the
   logs.
 * This confirms the fix works for the headless/REST submission case I originally
   reported.
 * I appreciate you making the plugin more defensive around the missing `_wpcf7cf_*`
   POST values. It improves compatibility not only for custom headless integrations,
   but also for any submission path where those fields are legitimately absent.
 * I will continue testing the rest of my headless forms, including forms that do
   use conditional fields, but the initial result is positive.
 * Thanks again for taking the feedback on board and implementing the fix.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7] Contact Form 7 Stripe Amount](https://wordpress.org/support/topic/contact-form-7-stripe-amount/)
 *  [0wordpress0user0](https://wordpress.org/support/users/0wordpress0user0/)
 * (@0wordpress0user0)
 * [10 months, 3 weeks ago](https://wordpress.org/support/topic/contact-form-7-stripe-amount/#post-18649859)
 * Suggest using Stripes checkout sessions method with Contact Form 7. The form 
   submission is saved in the session and you can use that to send email and more.
   Requires custom coding and very easy and doable using any AI for help
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7] How to generate unique reference no for hidden field in form?](https://wordpress.org/support/topic/how-to-generate-unique-reference-no-for-hidden-field-in-form/)
 *  [0wordpress0user0](https://wordpress.org/support/users/0wordpress0user0/)
 * (@0wordpress0user0)
 * [1 year, 6 months ago](https://wordpress.org/support/topic/how-to-generate-unique-reference-no-for-hidden-field-in-form/#post-18278969)
 * This also works.
 * add_filter(‘wpcf7_form_hidden_fields’, function($my_hidden_fields) {
   $my_hidden_fields[‘
   hidden_id’] = strtoupper(uniqid());return $my_hidden_fields;});
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Delayed Email Notifications for Contact Form 7] Works with Conditional Fields for Contact Form 7?](https://wordpress.org/support/topic/works-with-conditional-fields-for-contact-form-7/)
 *  Thread Starter [0wordpress0user0](https://wordpress.org/support/users/0wordpress0user0/)
 * (@0wordpress0user0)
 * [1 year, 9 months ago](https://wordpress.org/support/topic/works-with-conditional-fields-for-contact-form-7/#post-18119081)
 * Great, thanks for looking into this, appreciate your efforts and look forward
   to the changes in the future.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Delayed Email Notifications for Contact Form 7] Works with Conditional Fields for Contact Form 7?](https://wordpress.org/support/topic/works-with-conditional-fields-for-contact-form-7/)
 *  Thread Starter [0wordpress0user0](https://wordpress.org/support/users/0wordpress0user0/)
 * (@0wordpress0user0)
 * [1 year, 9 months ago](https://wordpress.org/support/topic/works-with-conditional-fields-for-contact-form-7/#post-18112230)
 * Thanks for responding! Much appreciated.
 * Your clarification helps. To confirm, the Conditional Fields plugin controls 
   BOTH form field visibility and email content based on set conditions. My core
   question was: if email sending is delayed, will the email content remain identical
   to the original conditions set?
 * Looking forward to your developers’ update on integrating conditional email control
   into your plugin.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7] Automatically format a postal code to the Canadian format](https://wordpress.org/support/topic/automatically-format-a-postal-code-to-the-canadian-format/)
 *  [0wordpress0user0](https://wordpress.org/support/users/0wordpress0user0/)
 * (@0wordpress0user0)
 * [2 years, 3 months ago](https://wordpress.org/support/topic/automatically-format-a-postal-code-to-the-canadian-format/#post-17738606)
 * Example.
 * if (preg_match(‘/^[A-Z]\d[A-Z]\s\d[A-Z]\d$/’, $postalCode)) { // Valid postal
   code } else { // Invalid postal code }
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Drag and Drop Multiple File Upload for Contact Form 7] Upload Area Not Showing in form](https://wordpress.org/support/topic/upload-area-not-showing-in-form/)
 *  [0wordpress0user0](https://wordpress.org/support/users/0wordpress0user0/)
 * (@0wordpress0user0)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/upload-area-not-showing-in-form/#post-13623851)
 * I have somewhat of a similar issue, the uploader works fine on any desktop browser
   but does not show up on Android Pixel 3 phone
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Drag and Drop Multiple File Upload for Contact Form 7] loading javascript and stylesheet only when it is necessary/](https://wordpress.org/support/topic/loading-javascript-and-stylesheet-only-when-it-is-necessary-4/)
 *  Thread Starter [0wordpress0user0](https://wordpress.org/support/users/0wordpress0user0/)
 * (@0wordpress0user0)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/loading-javascript-and-stylesheet-only-when-it-is-necessary-4/#post-13366757)
 * Thanks, this helpful and good to know. Is the requirement to name the Group and
   file name to be the same, as in the example, a requirement of Conditional fields
   plugin or the Drag and Drop plugin? My Group and file name are different and 
   posed no issue prior to using DnD plugin.
 * Separately, in the PRO version is it possible to have a custom upload folder 
   for each Contact Form 7 if one is using multiple forms to upload. For e.g. one
   form to receive files from clients and anther form for the admin to send files
   to clients.
 * Thanks for all your help, much appreciated!!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Drag and Drop Multiple File Upload for Contact Form 7] loading javascript and stylesheet only when it is necessary/](https://wordpress.org/support/topic/loading-javascript-and-stylesheet-only-when-it-is-necessary-4/)
 *  Thread Starter [0wordpress0user0](https://wordpress.org/support/users/0wordpress0user0/)
 * (@0wordpress0user0)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/loading-javascript-and-stylesheet-only-when-it-is-necessary-4/#post-13362488)
 * Hi there
 * I have noticed an issue/conflict with another plugin when testing things out (
   [https://wordpress.org/plugins/cf7-conditional-fields/](https://wordpress.org/plugins/cf7-conditional-fields/))
 * In my case the file upload input in a form is a **required** input but only if
   a certain option is selected. This is made possible with the plugin [https://wordpress.org/plugins/cf7-conditional-fields/](https://wordpress.org/plugins/cf7-conditional-fields/)
   and works fine before implementing the Drag and Drop upload plugin. The form 
   can be processed without the file upload but with the drag and drop plugin it’s
   not possible to submit the form without uploading a file even if certain conditions
   are not met. If I make the file upload not a required field then all is good.
 * So it seems when file upload input is marked a required input using *, it disregards
   the logic from the conditional fields plugin.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Drag and Drop Multiple File Upload for Contact Form 7] loading javascript and stylesheet only when it is necessary/](https://wordpress.org/support/topic/loading-javascript-and-stylesheet-only-when-it-is-necessary-4/)
 *  Thread Starter [0wordpress0user0](https://wordpress.org/support/users/0wordpress0user0/)
 * (@0wordpress0user0)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/loading-javascript-and-stylesheet-only-when-it-is-necessary-4/#post-13356610)
 * Hello [@glenwpcoder](https://wordpress.org/support/users/glenwpcoder/)
 * Appreciate your prompt response. Thanks!
 * I tried the code you provided and it works, nice!
 * I am going to do some additional testing that the plugin meets my needs and I
   will be purchasing the PRO version soon thereafter.
 * Thanks again for all your help!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7] Override the forms notification behaviour](https://wordpress.org/support/topic/override-the-forms-notification-behaviour/)
 *  Thread Starter [0wordpress0user0](https://wordpress.org/support/users/0wordpress0user0/)
 * (@0wordpress0user0)
 * [5 years, 12 months ago](https://wordpress.org/support/topic/override-the-forms-notification-behaviour/#post-13275975)
 * Hi there
 * I have tested the form under various scenarios and continue to be see that email
   messages come through well before the form processing has completed and moved
   on to show a success message. This is particularly pronounced when file attachments
   are involved. Any suggestions?
 * Thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7] Override the forms notification behaviour](https://wordpress.org/support/topic/override-the-forms-notification-behaviour/)
 *  Thread Starter [0wordpress0user0](https://wordpress.org/support/users/0wordpress0user0/)
 * (@0wordpress0user0)
 * [6 years ago](https://wordpress.org/support/topic/override-the-forms-notification-behaviour/#post-13192561)
 * Created a staging site and followed these recommendations. Using the default 
   2020 theme, Contact Form 7, Flamingo and WP Mail SMTP and still the same behavior
   where the email seems to come before seeing the success message for the form 
   submission.
 * Staging site [https://caipsnotes.com/EsTate/order-details/](https://caipsnotes.com/EsTate/order-details/)
 * Further recommendations?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7] Override the forms notification behaviour](https://wordpress.org/support/topic/override-the-forms-notification-behaviour/)
 *  Thread Starter [0wordpress0user0](https://wordpress.org/support/users/0wordpress0user0/)
 * (@0wordpress0user0)
 * [6 years ago](https://wordpress.org/support/topic/override-the-forms-notification-behaviour/#post-13142650)
 * Please see below. Thanks
 * PLUGINS
    ——- Autoptimize Version 2.7.3 by Frank Goossens (futtta) Contact Form
   7 Version 5.2 by Takayuki Miyoshi Contact Form 7 Conditional Fields Version 1.9.7
   by Jules Colle Flamingo Version 2.1.1 by Takayuki Miyoshi Font Awesome Version
   4.0.0-rc20 by Font Awesome Shortcodes Ultimate Version 5.9.2 by Vladimir Anokhin
   Stripe Payments Version 2.0.33 by Tips and Tricks HQ, wptipsntricks TinyMCE Advanced
   Version 5.4.0 by Andrew Ozz Web Stories Version 1.0.0-beta.1 by Google WP Easy
   Paypal Payment Accept Version v4.9.6 by Tips and Tricks HQ WP Fastest Cache Version
   0.9.0.8 by Emre Vona WP File Manager Version 6.5 by mndpsingh287 WP Mail SMTP
   Version 2.2.1 by WPForms WP Reset Version 1.80 by WebFactory Ltd Yoast SEO Version
   14.5 by Team Yoast
 * Additional Settings
    ——– Disable XML-RPC Setting a custom timeout value for cURL
   10sec Setting custom timeout for the HTTP request 10sec Setting custom timeout
   in HTTP request args 10sec
 * add_filter( ‘https_ssl_verify’, ‘__return_true’, PHP_INT_MAX );
    add_filter( ‘
   http_request_args’, ‘http_request_force_ssl_verify’, PHP_INT_MAX ); function 
   http_request_force_ssl_verify( $args ) { $args[‘sslverify’] = true; return $args;}
 * Theme
    —– Name Dazzling (dazzling) Version 2.1.1 Author Colorlib Author website
   [http://colorlib.com/wp/](http://colorlib.com/wp/) Parent theme None Theme features
   automatic-feed-links, post-thumbnails, menus, post-formats, custom-background,
   title-tag, custom-header, infinite-scroll, widgets
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7] Pass Value to Another Form with URL Encoding](https://wordpress.org/support/topic/pass-value-to-another-form-with-url-encoding/)
 *  Thread Starter [0wordpress0user0](https://wordpress.org/support/users/0wordpress0user0/)
 * (@0wordpress0user0)
 * [6 years ago](https://wordpress.org/support/topic/pass-value-to-another-form-with-url-encoding/#post-13142179)
 * FOLLOW UP
    ——— Have a follow up question after trying out the suggestions at 
   [https://contactform7.com/2019/12/08/customizing-mail-tag-replacement/](https://contactform7.com/2019/12/08/customizing-mail-tag-replacement/)
 * I used the code below as example on how to deal with empty spaces in someone’s
   First Name. It works fine, the code below replaces the empty space in the user
   submission with a +. The resulting link created using the mail-tag “firstname”
   does not break either because of a empty space. So all good here.
 * /* Customizing mail-tag replacement START
    [https://contactform7.com/2019/12/08/customizing-mail-tag-replacement/](https://contactform7.com/2019/12/08/customizing-mail-tag-replacement/)*/
   add_filter( ‘wpcf7_mail_tag_replaced’,
 *  function( $replaced, $submitted, $html, $mail_tag ) {
    if ( ‘firstname’ == $
   mail_tag->field_name() ) { if ( is_string( $submitted ) ) { $replaced = urlencode(
   $submitted ); } }
 *  return $replaced;
    },
 *  10, 4
    ); /* Customizing mail-tag replacement END*/
 * ISSUE DESCRIPTION
    —————— The issue now is that the mail-tag “firstname” is also
   used in the email greeting, e.g. Hello First Name which now becomes Hello First
   +Name
 * POSSIBLE SOLUTION?
    —————– I found this as a possible solution; have 2 different
   mail-tags for First Name. One to handle the email greeting and the other to handle
   the email link. One would be a hidden field. Is this the best way to go about
   it or are there simpler alternatives. [https://stackoverflow.com/questions/5896287/jquery-passing-value-from-one-input-to-another](https://stackoverflow.com/questions/5896287/jquery-passing-value-from-one-input-to-another)
 * Thank you.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7] Override the forms notification behaviour](https://wordpress.org/support/topic/override-the-forms-notification-behaviour/)
 *  Thread Starter [0wordpress0user0](https://wordpress.org/support/users/0wordpress0user0/)
 * (@0wordpress0user0)
 * [6 years ago](https://wordpress.org/support/topic/override-the-forms-notification-behaviour/#post-13142148)
 * The website with the form in question is at [https://gcmsnotes.com/order-details/](https://gcmsnotes.com/order-details/)
 * Thanks for looking it over

Viewing 15 replies - 1 through 15 (of 16 total)

1 [2](https://wordpress.org/support/users/0wordpress0user0/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/0wordpress0user0/replies/page/2/?output_format=md)