Abul Khoyer
Forum Replies Created
-
Hello @rvcz,
Thanks for your query. I tried to understand your query, but it is still unclear, maybe for the translation. Can you please provide a bit more detail so I can understand and provide a possible solution?
Waiting to hear from you.
Thank you.
Hello @rvcz,
Thanks for your query. I’m not fully clear about your use case and the screenshot you shared seems deleted. However, adding repeater fields with conditional logic might serve your purpose. Please check out the documentations:
1. https://wpmanageninja.com/docs/fluent-form/field-types/repeat-field/
2. https://wpmanageninja.com/docs/fluent-form/advanced-features-functionalities-in-wp-fluent-form/conditional-logic-fluent-form/Hope this helps.
Thank you.
Hello @parkeladmin,
Thanks for sharing your concern. Could you kindly provide the URL of the page where you’ve added the form so I can assist you with a solution?
Waiting to hear from you.
Thank you.
Hello @hj,
Thank you for reaching out and for your kind words!
Unfortunately, the specific functionality you’re looking for isn’t possible. I understand that having six separate form submission pages could be cumbersome. Currently, we don’t have an option to dynamically load multiple forms based on a dropdown selection.
However, there is a workaround you could consider. You can group the fields of all six forms within a single form using containers for each form field group. Then, you can show and hide specific groups of fields conditionally based on the selection made in the dropdown. Please check out the documentation on conditional logic: https://wpmanageninja.com/docs/fluent-form/advanced-features-functionalities-in-wp-fluent-form/conditional-logic-fluent-form/.
Hope this helps.
Thank you.
Hello @tapsuccess,
Thanks for your query. The form you referred to is created with WPForms. Can you please share the Fluent Forms’ exported form JSON in a zip file so I can check the issue from our end?
Thank you.
Hello @alexisfontana74,
Thanks for sharing your concern. I can see the theme CSS is overriding the form’s style. Please use the following CSS in the Custom CSS section of your form as a fix,
input[type=radio], input[type=checkbox] {
z-index: 1 !important;
opacity: 1 !important;
visibility: visible !important;
}You will find the Custom CSS/JS settings under the Settings & Integrations section.
This should resolve the issue.
Thank you.
Hello @rvcz,
Thanks for your query. You can auto-delete form entries in general. Please find the settings in the Settings -> Confirmation Settings -> Compliance Settings under the Settings & Integrations section. You will find the option at the bottom.
Hope this helps.
Thank you.
Hello @dynnode,
Thanks for reaching out about this. Editing form in the block editor is not possible currently. You can embed and see the preview only. However, I’m taking this as a feature suggestion and let our R&D team know about this.
Thank you.
Hello @ioruslan88,
The use case you are looking for is not possible. Columns inside the container limit the elements within a predefined width, thereby preventing automatic expansion. You can adjust the column width according to your requirements. Unfortunatley, there is no workaround that I can suggest to you.
Thank you.
Hello @appeltaartje,
Thanks for your query. Unfortunately, the container class doesn’t work for conversational form. However, you can use custom CSS for any customization.
Thank you.
Hello @svenebens,
There was a conditional error on the form. You have set condition with “Welk bewijs voor het onderdeel wonen wil je maken?” field with “Met wie heb je gewerkt?”. If the first three options match, the field will appear and skip for the last two options you mentioned. But “Met wie heb je gewerkt?” has preselected value “Allen”. Which finds a mismatch in form validation as the value is preselected.
Also, the “Wat heb je van deze activiteit geleerd?” has dependency with “Met wie heb je gewerkt?” field. Which throws the validation error based on the scenario I mentioned above. Please set the condition equal to the last two options instead of the not equal to Aleen. (see screenshot)
This should resolve the issue.
Thank you.
Hello @moaz02,
You can modify the submitted entry upon submission using the insert_response_data hook. Please check out this documentation for comprehensive guidance: https://developers.fluentforms.com/hooks/filters/?#fluentform_insert_response_data. I have attached an example below,
add_filter('fluentform/insert_response_data', function ($formData, $formId, $inputConfigs) {
if ($formId !== 44) {
return $formData;
}
$formData["hidden"] = "Modified " . $formData["hidden"];
return $formData;
}, 10, 3);Hope this helps.
Thank you.
Hello @bentalgad,
Thanks for reaching out. At the moment, it’s not possible to pass the label dynamically. This option will be available in the next update. In the meantime, you can use a workaround by passing the label statically. For example, label: {shortcode}.
Thank you.
Hello @josespinosa,
There is no default option to add attributes with input fields. You can add using custom JS. Please find the Custom CSS/JS tab under the form’s Settings & Integrations section. Then use the following JS in the Custom JavaScript section and replace the input’s name attribute according to yours.
let inputName = document.querySelector('input[data-name="input_text"]');
inputName.setAttribute('oncopy', 'return false');
inputName.setAttribute('onpaste', 'return false');
inputName.setAttribute('autocomplete', 'off');Hope this helps.
Thank you.
Hello @androidandreas,
Thanks for sharing your concern. Unfortunately, the classic editor doesn’t offer the live preview feature, which is a limitation of the classic editor. You may use the Gutenberg editor instead.
Also, you may use our native form builder to construct the form with a preview, and then you can embed it anywhere with the shortcode.
Hope this helps. Let us know if you need any assistance further.
Thank you.