DavenDaven Documentation

Google Tag Manager integration

Installation via Google Tag Manager

Access your GTM container

Log in to Google Tag Manager and open the container associated with your career site.

Create a new tag

  1. Click Tags in the left sidebar
  2. Click New to create a new tag
  3. Name your tag, for example Daven Tracking Script

Configure the tag

  1. Click on Tag Configuration
  2. Select Custom HTML as the tag type
  3. Paste the following script, replacing YOUR_CUSTOMER_TRACKING_ID with your customer tracking id:
<script title="Daven" crossorigin="anonymous" async>
  var customerTrackingId = 'YOUR_CUSTOMER_TRACKING_ID';
  var DDScript = document.createElement('script');
  var date = new Date();
  DDScript.type = 'text/javascript';
  DDScript.src = 'https://symposium.dashboard.davenhr.com/tag?customerTrackingId=' + customerTrackingId + '&timestamp=' + date.getTime();
  DDScript.setAttribute('title', 'Daven Script');

  var target = document.body || document.head || document.documentElement;
  target.appendChild(DDScript);
</script>

Set the trigger

  1. Click on Triggering
  2. Select All Pages to fire the script on every page of your site

Preview and publish

  1. Click Save on your tag
  2. Use the Preview button to verify the tag fires correctly on your site
  3. Once verified, click Submit to publish your changes

Make sure your GTM container snippet is already installed on your career site before configuring this tag.

On this page