Disable submissions on formfield

Hi @LeWolf,

You could try something like this in Page Settings > Custom Code > Footer Code:

<script>
$('#form').submit(function() {
  return false;
});
</script>

You’ll need to replace the form ID in $(‘#form’).

Let me know how you go! Would be great if you could send read-only link if you need further assistance.

Cheers