Display empty repeater page

Hi, so I have a repeater page set up to show user-generated submissions. However due to the nature of the page requiring submissions first, clicking on the page before a user makes a submission causes an error.

Is there a way to bypass this and show a “you need to submit something first!” message?

It’s pretty important for the icon to this repeater page to be present at all times so I can’t hide it.

Not done any coding so can’t show you anything, just using the dynamic page functionality.

I appreciate any feedback!

Thankyou

Hi Ethan, You can set the button to disabled like this:
$w(“#buttonName”).disable();

once the user submits the form you can set the button to enabled like this:

$w(" #buttonName ").enable();

You can also add a text label next to the button that says “You must submit something first” and then hide it once the user submits the form.

You can find more information on button functionality here:

https://www.wix.com/corvid/reference/$w.Button.html

Will give it a go thankyou :slight_smile: