How to get GCLID from contact form 7?

Viewed 24

I made a contact form in contact form 7 and also created hidden field in contact form with the name of textarea with some define ID and also kept it hidden. But when i am entering it into google it is giving undefined. Please check below and help me if i missing something..

[hidden textarea zc_gad id:hidId]
<div class="col-md-6">
    <div class="form-item">
        [text* your-name class:name placeholder "Full Name *"]
    </div>
</div>

<div class="col-md-6">
    <div class="form-item">
        [email* your-email placeholder "Email *"]
    </div>
</div>

<div class="col-md-6">
                 
    <div class="form-item">
             [tel* tel-653 placeholder "Phone Number *"]     
         </div>
</div>

   <div class="col-md-6">
    <div class="form-item">
        [text* your-budget placeholder "Your Budget *"]
    </div>
</div>
<div class="col-md-12">
    <div class="form-item">
        [textarea* message placeholder "A short description of your project *"]
    </div>
</div>
   <div class="col-md-12">
    <div class="form-item">
                    Upload file less than 10 MB
        [file uploadfile limit:10485760 filetypes:.pdf|.word|.jpg|.jpeg|.ppt|.pptx|.doc|.docx|.odt|.xlsx placeholder "Maximum 10mb Allowed"]
      
                    
    </div>
</div>

  <div class="col-md-12">
    <div class="form-item">
                    [checkbox checkbox-673 use_label_element "Send me a copy of NDA"]
        [checkbox checkbox-674 use_label_element "I want to get the latest offers and updates"]
    </div>
</div>

<div class="col-md-12">
    <div class="form-submit">
        [submit "Send message"]
    </div>
</div>
0 Answers
Related