Link Software LLC
Forum Replies Created
-
@coopi Thank you for the suggestion. Accessibility is on my list of things to address in future releases.
Forum: Reviews
In reply to: [HTML Forms - Simple WordPress Forms Plugin] Lightweight and efficient!@karel0017 Thank you for the review.
@joehoe12 Can you send me the URL? I’d like to take a look. If you don’t want to post it here, you can email me: [email protected]
@tausworks For now, you can submit any ideas you have here:
https://htmlformsplugin.com/contact/
I would prefer that over using the support forum.
@tausworks Thanks for the suggestion. I’ll add it to my list for consideration in the future. I really appreciate the feedback.
- This reply was modified 1 month, 3 weeks ago by Link Software LLC. Reason: Typo
Forum: Plugins
In reply to: [HTML Forms - Simple WordPress Forms Plugin] HTML Form block stopped workingI was never able to recreate this issue, but if it comes up again I’ll update the plugin and this support thread.
1.4.0 has tweaks to the Submissions list to help with formatting.
@unaccoc Any updates available on this? Do you still think it’s a bug in the plugin?
The
success
event gets the full HTML of the form. So you could take that string and pull out individual inputs by theirname
attribute, for example:document.addEventListener("DOMContentLoaded", function() {
html_forms.on('success', function(formElement) {
const name = formElement.querySelector('input[name="NAME"]').value;
console.log('name:', name);
});
});@boldhoots Correct me if I’m misunderstanding, but you want the Submissions tab to handle the formatting for the text in the columns better? I’ll look into improving that for the next release, 1.4.0, due out shortly.
@mhmmdsufyan This can be fixed with a database change, but I’d rather not handle that on a public forum. Would you mind emailing me? [email protected]
An IPhone SE running the latest release of iOS (17.6.1).
@unaccoc I just tried a test submission with my iPhone, using Safari, it seems to have gone through. I see the following message below the button after I submitted:
“Merci pour votre inscription, une confirmation vous a eye envoye par courriel.”
And I received a confirmation email.
Do you see my submission in the plugin’s Submissions tab?
You click “Add Choice” to add multiple options:
https://htmlformsplugin.com/wp-content/uploads/2024/09/checkbox-field-add-choice-admin.png
It should appear on the form like so:
https://htmlformsplugin.com/wp-content/uploads/2024/09/checkbox-field-add-choice-form.png
And the submission should look like this:
https://htmlformsplugin.com/wp-content/uploads/2024/09/checkbox-field-add-choice-submission.png
You can email me your URL, if your experience is different, and I can take a look at the markup to try and see what’s going on: [email protected]
@kxpro Yes, the checkbox field supports multiple values. You can also set up the dropdown field to allow multiple values as well.