Abul Khoyer
Forum Replies Created
-
Hello @thiagolopesbc,
Thanks for bringing this to our attention. We have improved this and will be merged in the next update.
Thank you.
Hello @vdmalvasio,
Thanks for your query. There is no default way to do that. As a workaround, you may do this using custom JS,
let input1 = document.getElementById('ff_14_input_text');
input1.addEventListener('blur', transferData);
function transferData() {
let inputValue = input1.value;
let input2 = document.getElementById('ff_14_input_text_1');
input2.value = inputValue;
}Please map the input id according to yours.
Thank you.
Hello @mika85,
The hook referred in the snippet is deprecated. You would need to replace the hook. Please try with the following snippet,
add_filter("fluentform/validate_input_item_input_email", function ($error, $field, $formData, $fields, $form) { $my_form_id = 1; // Replace with your Form ID $max_entries = 25; // Replace with max number of allowed entries if ($form->id != $my_form_id) { return $error; } $email = $formData['email']; // This is the name of your email field if (empty($email)) { return $error; } $max_entries = $max_entries + 1; $formApi = fluentFormApi("forms")->entryInstance($formId = $my_form_id); $atts = [ "per_page" => $max_entries, "search" => $email, "sort_by" => "DESC", "entry_type" => "all", ]; $entries = $formApi->entries($atts, $includeFormats = false); if( $entries['total'] >= $max_entries){ return ['You have reached the entry limit']; } return $error; },10,5);
Please make sure you have mapped the form ID and email field correctly according to yours.
Thank you.
Hello @mika85,
Sorry for delayed response. Glad you managed to solve the issue.
Thank you and have a good day.
Thank you too, Ajay. Have a nice day.
Hello @fan297,
Currently, there is no option to set minlength. I’m taking this as a feature request. As a temporary solution, you may set the attribute with custom JS like the following,
let input = document.querySelector("#ff_14_input_text");
const minLength = 2;
input.setAttribute("minlength", minLength);Hope this helps.
Thank you.Hello @ajay,
Thanks for bringing this to our attention. Fluent Forms is not fully compatible with PHP 8.3 yet. We will improve the compatibility in future updates.
Thank you.
Hello @pedcam,
Sorry for the inconvenience. It seems the issue site-specific. We need to troubleshoot the issue. Can you please open a support ticket in our portal so we can investigate the issue?
Thank you.
Hello @webwildfire,
Restrictions based on keywords work with comma-separated values. So, if you have multiple words, you would need to separate them with a comma.
There is no option to have “not contains” / “do not match” check in advanced form validation.
Also, it’s not possible to show a successful submission without actually processing the data.
Regarding adding conditions to the email notifications and integrations individually, this can be possible – you can set conditions there individually.
Thank you.
Hello @jenish11,
Thanks for your query. There is no option to filter by field value, you can filter by date/timeframe only.
Thank you.
Hello again,
- The use case you are looking for is not possible. WP Social Ninja native translation module supports one language at a time.
- There was an issue on our end. We have fixed the issue and the fix will be merged on the next update. If you need a beta version urgently, you are requested to reach out to our business portal.
Thanks.
Hello @joomart,
WP Social Ninja is 100% translatable. You can use and standard translation plugin to translate. Even we have a native translation module which you will find under General Settings.
We would love to assist if you need assistance with any particular query.
Thanks.
Hello @hbedit,
Thank you for your kind words and suggestions! We’d greatly appreciate it if you could leave a review of your experience on the review section. Your feedback is invaluable to us. ??
Have an excellent rest of your week.
Thank you.Hello @hbedit,
It seems the mobile version column is not specified. (see screenshot)
If you have done already, please clear up the site cache. This should resolve the issue.
You are requested to open a ticket in our business portal if the issue still persists, we might need to troubleshoot by login to your staging site.
Thanks.
I can’t find any opened ticket on our portal. Can you please share your ticket ID here? So we could investigate further.
Thanks.