CMS and membes area

Question:
can we fix some details in cms ?
when a user click on submit, the user should not be able to edit them or resumbit them.

Product:
Wix Editor

What are you trying to achieve:
For example, if a user logs in and submit their details, the cms will take the user input and the user should not be able to re submit the details again.
Submit button should be available for one time per user.

What have you already tried:
resources, forum topics, articles

So i think your question is …. how do you create a form that can only be submitted one time per member and never allow member to edit it again?

You can add page to the code to check if member has submitted anything to the database by searching the Owner field. Then hide the form.

Its not a form, its a page with basic input fields like text, numbers and dropdown, where if a user clicks on submit button once, even after logging in after few days the user should not be able to edit those inputs as they are fixed and also one user should click on submit only once.

That’s still a form. Whether you used custom inputs and a button or the Wix Forms app. It’s a form that was built with inputs to collect data.

You need to add code to the page to check who is logged in. Then use data query to search the Owner field in the database where you saved those answers. If there is a match, then hide the entire section where the form is built.

If you did not require the user to be logged in before the first filled out the form then you will have a more difficult time due to the logic. The database won’t know who filled out the form because it won’t know who the Owner is of that information. If you did not collect the email address the first time they filled out the form then you won’t be able to search by email address either.

This tutorial is just to help you with the logic part of your problem. It will not help you code the “hide and show” part.

Now if you still want them to READ the data after coming back, you can connect regular text to each field and simply display the data after submission. You do not have to use inputs to display data that was previously collected. (In either case, your original form dataset settings should only be set to Write Only not Read and Write)