• Go to Formidable Forms Official Site
  •  Login
  •  

Log In

Forgot Password

Search

Formidable Forms Community Site

Torrey Russell

Exit Subscribe Pop UP

Using exit popup form to ask for subscription to site.

Schedule Post date and time

Using FF to create a form to create post/pages How to setup front-end posting in WordPress On the "posting" form Example: http://russelltours.com/post Add a date field and a time field (set time field to 24 hours) add a 3rd field for datetime combo. Make combined datetime field a date format. See code below. Add this code to code snippets plugin... https://wordpress.org/plugins/code-snippets/ -------------- add_filter( 'frm_validate_field_entry', 'frm_combine_date_time', 8, 2 ); function frm_combine_date_time( $errors, $posted_field ) { $date_field = 810; // change 25 to the id of your date field $time_field = 830; // change 26 to the id of your time field $combo_field = 831; // change 27 to the id of your hidden combo field if ( $posted_field->id == $combo_field ) { $date = FrmProAppHelper::maybe_convert_to_db_date( sanitize_text_field( $_POST['item_meta'][ $date_field ] ), 'Y-m-d' ); $time = sanitize_text_field( $_POST['item_meta'][ $time_field ] ); FrmProTimeField::time_array_to_string( $time ); $time = FrmProAppHelper::format_time( $time, 'H:i:s' ); $_POST['item_meta'][ $combo_field ] = $date . ' ' . $time; } return $errors; } -------------------- See FF KB: frm_validate_field_entry See "Combine date and time#" section. In Form Settings for "Create Post" Choose your new combined field "datetime" in the post time setting on your form.

Use Rules Based forms to create programs and processes for end users

My customer, and I assume yours, is not very savvy when it comes to communicating with their clients... I have generated a way for forms to be used that generate forms. By that I mean, I have an account form that "registers" user fields like texting templates and links . They then can use those fields in another form to generate a text to someone.

Navigation

  • Privacy Policy
  • Formidable Forms for WordPress

Discussions

  • An add-on
  • Creating posts/pages
  • Emails
  • Entries
  • Filter & Action Hooks
  • Forms
  • Getting Started
  • Importing/Exporting
  • Javascript
  • Reports, Graphs and Statistics
  • Styles
  • Styling
  • Tips & Tricks
  • Views

Disclaimer

The purpose of this site is to help members of the Formidable Forms Community interact with one another, provide examples of custom code and help others with topics that may not be covered by support on the main Formidable Forms website. If you are seeking support from the Formidable Forms team, please create a ticket on the Formidable Forms website.

Copyright © 2021 Strategy11, LLC