Getting StartedBeginner
6 min read
Updated 28 April 2025

Installation

QuintaGo works as a cloud application — there is nothing to install on a server. However, to capture leads from your venue website, you need to connect the WordPress plugin or embed the JavaScript widget. This guide covers both options.

WordPress plugin

The WordPress plugin is the easiest way to connect your website. It automatically captures submissions from Contact Form 7, WPForms, Gravity Forms, and Elementor forms.

  1. In your WordPress admin, go to Plugins → Add new
  2. Search for QuintaGo and click Install Now
  3. After installation, click Activate
  4. Go to Settings → QuintaGo and paste your API key
  5. Map your form fields to QuintaGo fields (name, email, phone)
// API key format
qg_live_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

// Test key (for development)
qg_test_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

JavaScript widget

If you are not on WordPress, embed the QuintaGo widget directly in your HTML. Paste this snippet before the closing </body> tag:

<script>
  window.QuintaGoConfig = {
    apiKey: 'qg_live_xxxxxxxxxxxxxxxxxxxx',
    venue: 'your-venue-slug',
    theme: 'light', // or 'dark'
    position: 'bottom-right'
  };
</script>
<script src="https://cdn.quintago.io/widget/v1/embed.js" async></script>

Retrieve your API key

Your API key is available in Settings → Integrations → API keys. You can create separate keys for live and test environments. Never commit your live key to a public repository.

Security note: Treat your API key like a password. If you suspect a key has been compromised, rotate it immediately from the Settings page.

Verifying the connection

After installation, submit a test enquiry on your website. Within seconds, it should appear in your Leads → Pipeline view. If it does not, check the Troubleshooting guide.

Advanced configuration

The JavaScript widget supports additional configuration options for custom form handling:

window.QuintaGoConfig = {
  apiKey: 'qg_live_xxxx',
  // Custom field mapping
  fieldMap: {
    'your-name-field': 'lead.name',
    'your-email-field': 'lead.email',
    'your-phone-field': 'lead.phone',
    'event-date-field': 'lead.eventDate',
    'guest-count-field': 'lead.guests',
  },
  // Auto-open chat after form submission
  openChatAfterSubmit: true,
  // UTM parameter capture
  captureUtm: true,
};
Tags:installationsetupwordpress

Was this article helpful?