WordPress integration

WordPress needs no extra plugin: the same plain HTML form works inside a custom HTML block.

  1. 1. In the block editor (Gutenberg), add a "Custom HTML" block.
  2. 2. Paste the following code inside the block.
  3. 3. Publish the page. The form works with no form plugin installed.
<form action="https://api.farvane.com/api/v1/submit" method="POST">
  <input type="hidden" name="access_key" value="YOUR_ACCESS_KEY_HERE">
  <input type="checkbox" name="botcheck" style="display: none" tabindex="-1" autocomplete="off">

  <label>Nombre
    <input type="text" name="name" required>
  </label>
  <label>Email
    <input type="email" name="email" required>
  </label>
  <label>Mensaje
    <textarea name="message" required></textarea>
  </label>

  <button type="submit">Enviar</button>
</form>

If you use Elementor or another page builder, the equivalent widget is usually called "HTML" instead of "Custom HTML" — the content you paste is exactly the same.

Next step: create your account and copy your real access_key.