top of page
17963342477011185.jpg

Start Lean

A Free Webinar on How to Unleash Your Inner Entrepreneur.

Presented by Tamala Francis,
Founder & CEO at Francis & Co.

Introduce the webinar hosts by highlighting their career background or professional history. Just click “Edit Text” or double click the Text Box to add your own content.

In this webinar we will cover

I want to join the webinar,
Sign me up!

Thanks for submitting!

  • Facebook
  • Twitter
  • Instagram
  • LinkedIn
bottom of page
import wixData from 'wix-data'; import wixLocation from 'wix-location'; $w.onReady(function () { // Get the URL parameter "utm_source" directly using Wix Location API const utmSource = wixLocation.query.utm_source; if (utmSource === 'google') { $w('#multiStepForm1').onSuccess(() => { let formData = $w('#comp-lpb63umo1').getFormData(); // Assuming formData already has utm parameters wixData.insert('Leads', { ...formData, googleAdsLead: true // add custom field indicating a lead from Google }) .then(() => { console.log('Lead from Google Ads campaign submitted successfully'); }) .catch((error) => { console.error('Error submitting lead from Google Ads campaign:', error); }); }); } });