All Collections
API / Customization / Advanced
Advanced CSS, JavaScript and HTML
Sample - How to setup Google Conversion Code on an out of the box PeopleVine Page
Sample - How to setup Google Conversion Code on an out of the box PeopleVine Page
Updated over a week ago

So you want to track more with Google? Not a problem. By leveraging the code below, you can easily add Google Code for form submission conversion on any out of the box page.

Simply replace your conversion code info with the info below and paste this in the page layout of your site.



/* <![CDATA[ */
  var google_conversion_id = 000000000;
  var google_conversion_language = "en";
  var google_conversion_format = "3";
  var google_conversion_color = "ffffff";
  var google_conversion_label = "abcdefghijklmnopqrstuvwxyz";
  var google_remarketing_only = false;
/* ]]> */




 

  $(function() {

var FormSubmission =
'<div style="display:inline;">' +
'<img height="1" width="1" style="border-style:none;" alt="" src="//www.googleadservices.com/pagead/conversion/941076685/?label=leKUCKLikWAQzeHewAM&amp;guid=ON&amp;script=0"/>' +
'</div>';

function eventRegistered(data) {
$('body').append(FormSubmission);
}

function bookingConfirmed(data) {
$('body').append(FormSubmission);
}

  });
Did this answer your question?