fluentform/payment_submission_data
Description This filter is used during submission to et submission data when the form has a payment option. apply_filters('fluentform/payment_submission_data', $submission, $this->form) Usage...
View Articlefluentform/payment_method_settings_validation_{$method}
Description This filter is used during saving any payment method to validate the data. apply_filters('fluentform/payment_method_settings_validation_' . $method, $errors, $settings); Usage...
View Articlefluentform/stripe_checkout_args
Description This filter returns checkout arguments for the stripe payment. apply_filters('fluentform/stripe_checkout_args', $checkoutArgs, $submission, $transaction, $form); Usage...
View Articlefluentform/uploader_args
Description This filter returns the file uploader arguments. apply_filters('fluentform/uploader_args', ['test_form' => false], $filesArray, $this->form); Usage...
View Articlefluentform/file_uploaded
Description This filter is used when uploading the files. apply_filters('fluentform/file_uploaded', $uploadFile, $this->formData, $this->form); Usage add_filter('fluentform/file_uploaded',...
View Articlefluentform/file_upload_params
Description Using this filter you can change the upload directory of the temporary file upload location. It is not recommended to change this unless you completely understand how it works....
View Articlefluentform/default_upload_path
Description This filter returns the file upload path. apply_filters('fluentform/default_upload_path', $file, $originalFileArray, $this->formData, $this->form); Usage...
View Articlefluentform/file_upload_validations
Description Using this filter you can modify the file upload validation rules and messages. apply_filters('fluentform/file_upload_validations',[$rules, $messages],$this->form); Usage...
View Articlefluentform/file_upload_validation_error
Description Using this filter you can modify the file upload validation errors. apply_filters('fluentform/file_upload_validation_error', $errors,$this->form); Usage...
View Articlefluentform/disable_inputmode
Description This filter checks if the input mode numeric should be disabled for numeric filed. apply_filters('fluentform/disable_inputmode', false) Usage add_filter('fluentform/disable_inputmode',...
View Articlefluentform/file_type_options
Description This filter returns the file type option for the upload field. Using fluentform/file_type_options you can add more file types that are not supported by default....
View ArticleUseful Snippets
<?php // Disable default css for all the forms add_filter('fluentform/load_default_public', '__return_false'); // disable default css for the specific forms...
View ArticleCreating Pretty Conversational Form URL Slug
By default, Fluent Form’s conversational form’s URL looks like this: yourdomain.com/?fluent-form=FORM_ID&form=OPTIONAL_SECURITY_CODE But if you want to customize it and make it pretty something...
View ArticleHow to create your own custom field with Fluent Forms
Introduction The goal of this article is to help you become familiar with easily creating custom input fields using fluentforms.. We will create new input field using the BaseFieldManager class. In...
View Articlefluentform/default_upload_path
Using this filter you can change the file upload directory of fluentforms default file upload location. apply_filters('fluentform/default_upload_path', $path, $form); Usage...
View Article