Implementing it on the events page (or any other page) requires two steps:

  1. Put a link on the page somewhere for users to tap and launch the form.
  2. Include the form and associated handling code with a PHP include() statement.

Below is a working link to launch the form.

Talk to us!

The link can be put anywhere on the page so long as the PHP code to include the form is also on the page. The link code is:

<a href="javascript:LaunchContactForm()">Talk to us!</a>

The PHP code to include the form on the page is put at the bottom of the body section of any page you want to enable with this form. Put it immediately above the closing </body> tag. Here is the code:

<?php include('pageassets/eventforminclude.php') ?>
X