Abul Khoyer
Forum Replies Created
-
Hello @worldsdream,
Just to keep you informed, I’ve discussed this with the developer, and they confirmed it’s in our roadmap. But I can’t provide an ETA right now.
Thanks.
Hello @nickysalido,
Sorry for the delayed respnse. We missed your ticket earlier. You don’t have to go through this process. You should get the available update message on the plugin directory of your site. You can update the plugin from there.
Thank you.
Hello @bentalgad,
Sorry for the delayed response and the inconvenience. This should not have happened. Maybe something went wrong there. We need to troubleshoot the issue. Can you please open a support ticket in our business portal so we can check the issue?
Thank you.
Hello @mika85,
It seems something went wrong there. Can you please open a ticket on our business portal so we can check further.
Thank you.
Hello @ldwd,
You can filter entries across the form fields only. The use case you are looking for is not possible currently. I’m taking this as a feature request. Hopefully, our R&D team will look into it.
Thank you.
Hello @foldesistudio,
You can change file name using a hook. Please check out the hook below,
add_filter('fluentform/uploaded_file_name', function($file, $originalFileArray, $formData, $form){
$file = 'custom_name';
return $file;
}, 10, 4);Hope this helps.
Thank you.
Hello @ldwd,
Sorry for the delay in getting back to you. You can edit the response according to your needs using the hook below,
add_filter('fluentform/response_render_custom_html', function ($originalInput, $field, $formId, $isHtml) {
// handle response
return $originalInput;
}, 10, 4);Hope this helps.
Thank you.
Hello @worldsdream,
Thanks for sharing your concern and reaching out about this. WordPress loads jQuery by default and we just use them. We don’t load jQuery additionally from our end.
However, We have no plan to switch to vanilla JS in near future.
Thank you.
Hello @tugbucket,
Sorry for the delayed response. Glad you found this. However, the hook is already listed on our developer doc. Please check this out: https://developers.fluentforms.com/hooks/actions/#fluentform_after_deleting_submissions.
Is there anything I can assist you with?
Thank you.
Hello @androidandreas,
The form you referred to is not created with Fluent Forms. Unfortunately, we are unable to help you regarding this.
Thank you.
Hello @deepblue5,
Sorry for the delayed response. There is no option to delete all entries at once. You can delete form-specific entries only.
Thank you.
Hello @klkoh,
It is difficult to troubleshoot the issue without access. I’m assuming there is an internal conflict on your site. You may check your browser console and network if there are any errors. Please deactivate the caching plugin if you have any and delete the existing /cache folder located in the /wp-content directory.
Also, you may deactivate all plugins except for Fluent Forms to determine if it works standalone on your site. Then you can activate the plugins again one by one to suspect which one is creating conflict.
Hope this helps.
Thank you.
Hello @robifz,
You can validate input against a regex pattern. You will get this option under Settings & Integrations -> Settings section. (see screenshot)
Please note that the validation will be checked on submit. There is no option to validate in real-time.
Thank you.
Hello @gbordormor22,
You can create step forms using Fluent Forms. You have to purchase the pro version to avail of this feature. Please check this out: https://fluentforms.com/multi-step-form/.
By default, It is not possible to show the confirmation message in a popup. But you can show the confirmation message on a new page or in the same page. Also, you can redirect users to any custom URL.
Thank you.
Hello @azael2k,
Thanks for your query. You can remove the footer using a hook. Please add the following snippet in your functions.php file or add this separately in any .php file using the snippet plugin,
add_filter('fluentform/email_template_footer_text', function ($footerText, $form, $notification) {
return false;
}, 10, 3);Hope this helps.
Thank you.