€9
Add to cart

Structured Datasource Forms (WordPress Plugin)

€9

Empower any WordPress site with flexible, schema-driven, data-driven features. Define custom datasources in wp-admin then and capture submissions straight to your database or via REST or well defined js helpers.

The premium license unlocks unlimited datasources, advanced field types, accent styling, record browsing, CSV exports, and API reads—perfect for agencies and site builders who need tailored data capture

without bloated form builders. Plug, define, and deploy within minutes.


With this plugin you will be able to create features like this:

<form id="test-form">
    <label>
      First name
      <input type="text" name="first_name" required>
    </label>
    <button type="submit">Send</button>
  </form>

  <script>
  document.getElementById('test-form').addEventListener('submit', async (event) => {
    event.preventDefault();

    const formData = new FormData(event.target);
    const payload = { first_name: formData.get('first_name') };

    try {
      const result = await StructuredDatasourceForms.submit('form-slug', payload);
      alert(`Saved! Record ID: ${result.record_id}`);
      event.target.reset();
    } catch (error) {
      const details = error.data?.data || {};
      alert('Submission failed: ' + (details.first_name || error.message));
    }
  });
  </script>


This gives you the ability to create any feature with HTML and collect data from customers. This helps a lot in case you have custom form or feature and you want to store submissions.

I usually use ChatGPT to create me some nice forms, and I use this plugin to store submissions.

Add to cart
Powered by