Dear Nick,
there is a pretty simple workaround for you.
At least for the meantime, until the feature is released.
You just need to add some JavaScript to the form.
Step 1: Configure 'Display an edit link instead of the form'.
docs.joomla-4.visforms.vi-solutions.de/e...ink-instead-of-form/
Step 2. Add a (invisible) site module to the page with the form.
This is described in the documentation.
Load JavaScript via a custom module:
docs.joomla-4.visforms.vi-solutions.de/e...d-script-own-module/
Step 3: Paste the following small JavaScript into the module.
Code:
<script>
jQuery(document).ready(function() {
// console.log('module started');
jQuery('#visformcontainer.visforms-form:not(.visforms)').empty().append('<p>You have submitted an entry, if your require to make changes please email.</p>');
});
</script>
I tested the Code with the UI framework 'Boostrap 5'.
Step 4: Done.
The user gets his page with the edit link.
The edit link is completely removed from the page along with the message text.
Instead, your new text from the 'append()' call will be inserted.
Kind regards, Ingmar