Track Elementor Form Submission Google Analytics (GA4) with Google Tag Manager

Standard

To Track Elementor form submissions with Google Analytics 4 (GA4) using Google Tag Manager (GTM), you’ll need to create a custom tag in GTM that fires on form submissions and sends the data to GA4 as events.

To Track Elementor form submissions with Google Tag Manager (GTM), you’ll need to create a custom tag in GTM that fires when a form is submitted and pushes the form data to the data layer. The form data can then be used in other GTM tags or triggers to track the form submissions as events in Google Analytics 4 (GA4) or other marketing and analytics tools.

To push Elementor form submission data to the data layer using Javascript, you’ll need to listen for the elementor/forms/submit/success event and use dataLayer.push() to add the form data to the data layer.

Here is an example of how to do this:

  • Make sure you have both Elementor and GTM installed on your website.
  • In Elementor, create a form and make note of the form ID or class name.
  • In GTM, create a new custom tag and choose “Custom HTML” as the tag type.
  • In the HTML editor, add the following script:
<script>
  document.addEventListener("elementor/forms/submit/success", function(event) {
    if (event.target.id === 'form-id') {
      window.dataLayer = window.dataLayer || [];
      window.dataLayer.push({
        'event': 'elementor_form_submission',
        'formId': event.target.id,
        'submissionDate': new Date().toISOString(),
        'userInputs': event.detail.fields
      });
    }
  });
</script>

Note: Replace ‘form-id’ with the actual ID of your Elementor form.

  • Add a trigger for the tag, and choose “Custom Event” as the trigger type.
  • In the trigger’s configuration, enter “elementor_form_submission” as the event name.
  • Publish the changes to your GTM container.

Note: Replace ‘form-id’ with the actual ID of your Elementor form. This code listens for the elementor/forms/submit/success event and pushes an object with form data to the data layer when the form is successfully submitted. The data layer object includes the form ID, submission date, and user inputs. You can access this data in other tags or scripts that have access to the data layer.

Disclaimer: Google tag manager belongs to Google property 

For Contact: mappchero@gmail.com

I am available for Hire on Freelancer: Freelancer.com

I am available for Hire on Upwork: Upwork.com

I am available for Hire on Peopleperhour: Peopleperhour.com

I am available for Hire on Guru: Guru.com

Google Analytics (GA4) Fluent Forms Event Tracking with Google Tag Manager

Standard

Google Analytics 4 (GA4) Event Tracking Fluent Forms via Google Tag Manager

Fluent Forms supports event tracking with Google Analytics 4 (GA4) through Google Tag Manager (GTM). With this setup, form submissions can be tracked as events in your GA4 property using the GTM container. To set up event tracking with GTM and GA4, you’ll need to have Fluent Forms and GTM installed on your website, create a form, and then configure the GA4 event tracking in GTM using a custom tag. You’ll also need to have a GA4 property and a GTM container with the GA4 tracking code set up for your website.

To Track Fluent Forms submissions using Google Tag Manager (GTM), you’ll need to create a custom tag that fires on form submissions. This tag can send information about the form submissions, such as the form ID, to your GTM data layer. From there, you can use the information in your GTM triggers and variables to track the submissions as events in Google Analytics, or pass the data to other marketing and analytics tools. To set this up, you’ll need to have both Fluent Forms and GTM installed on your website, as well as a basic understanding of how GTM works.

To push Fluent Forms submissions data to the data layer using JavaScript, you’ll need to write a custom script that retrieves the information you want to track, such as the form ID, submission date, and user inputs, and pushes it to the data layer. The data layer is a global object in the browser where you can store information that you want to pass between your website and GTM. The script should be triggered when a form is successfully submitted.

Here’s an example of what a basic script could look like:

document.addEventListener('fluentform_after_submission', function (event) {
  if (event.detail.formId === 'form-id') {
    window.dataLayer = window.dataLayer || [];
    window.dataLayer.push({
      'event': 'fluentform_submission',
      'formId': event.detail.formId,
      'submissionDate': new Date().toISOString(),
      'userInputs': event.detail.fields
    });
  }
});

Note that this is just one example, and you may need to modify the script based on your specific requirements and the data available in the Fluent Forms event object. To use the script, you’ll need to add it to your website’s HTML or JavaScript file and make sure it runs after both Fluent Forms and GTM are loaded.

Disclaimer: Google tag manager belongs to Google property 

For Contact: mappchero@gmail.com

I am available for Hire on Freelancer: Freelancer.com

I am available for Hire on Upwork: Upwork.com

I am available for Hire on Peopleperhour: Peopleperhour.com

I am available for Hire on Guru: Guru.com

Tracking Google Analytics 4 (GA4) Marketo Form Submission using Google Tag Manager

Standard

Google Analytics 4 (GA4) Marketo Form Submission Tracking using Google Tag Manager

GA4 Marketo Form Submission refers to the tracking of form submissions on Marketo landing pages using Google Analytics 4 (GA4). By integrating GA4 with Marketo, marketers can track the performance of their landing pages, including form submissions, and gain valuable insights into user behavior. This information can be used to optimize marketing strategies, improve the user experience, and increase conversion rates. The integration between GA4 and Marketo enables marketers to collect, analyze, and act on data from multiple sources to make data-driven decisions and drive better business outcomes.

To Track Marketo form submissions in Google Analytics 4 (GA4), you can set up an event in GA4 and then use Marketo’s tracking code to send form submission data as an event to GA4. Here’s a high-level overview of the steps:

  • Set up a GA4 event in your GA4 property: Go to the GA4 property for your website, navigate to the “Events” section, and create a new event for your Marketo form submissions.
  • Get your GA4 tracking code: In GA4, find your tracking code in the “Admin” section and copy it to your clipboard.
  • Add the GA4 tracking code to your Marketo form: In Marketo, go to the form you want to track and add the GA4 tracking code to the form’s tracking code.
  • Send form submission data as an event to GA4: In the tracking code, set up the event to be triggered when the form is submitted, and pass the form data as event parameters.

A Marketo Form Listener is a JavaScript code that listens for events on a Marketo form, such as when a form is submitted. The listener can then perform specific actions based on the event, such as sending the form data to another service or triggering an event in Google Analytics 4 (GA4).

To set up a Marketo Form Listener in Google Tag Manager (GTM), you’ll need to create a custom HTML tag and trigger in GTM and then add the Marketo Form Listener code to the custom HTML tag. Here’s a high-level overview of the steps:

Here’s an example of how you can set up a Marketo Form Listener:

  1. Create a custom HTML tag: In GTM, create a new custom HTML tag and add the Marketo Form Listener code to the tag.

2. Define the listener: In the custom HTML tag, define the listener using the Marketo Munchkin API.

MktoForms2.whenReady(function (form){
  form.onSubmit(function(){
    // Add your code here
  });
});

3. Create a trigger: In GTM, create a new trigger that fires on the page where your Marketo form is embedded.

4. Add the trigger to the custom HTML tag: In GTM, add the trigger to the custom HTML tag you created in step 1.

5. Perform actions based on the event: In the listener code, you can perform specific actions based on the form submission event, such as sending the form data to another service or triggering an event in Google Analytics 4 (GA4).

Here’s an example of how to send the form data to Google Analytics 4 (GA4):

MktoForms2.whenReady(function (form){
  form.onSubmit(function(){
    dataLayer.push({
      'event': 'formSubmission',
      'formId': form.getId()
    });
  });
}); 

By using a Marketo Form Listener in GTM, you can extend the functionality of your Marketo forms and perform specific actions based on form submissions, such as sending the form data to Google Analytics 4 (GA4).

Disclaimer: Google tag manager belongs to Google property 

For Contact: mappchero@gmail.com

I am available for Hire on Freelancer: Freelancer.com

I am available for Hire on Upwork: Upwork.com

I am available for Hire on Peopleperhour: Peopleperhour.com

I am available for Hire on Guru: Guru.com

Tracking Google Analytics 4 (GA4) Hubspot Forms Submission using Google Tag Manager

Standard

Conversions Tracking HubSpot Forms Submission in Google Analytics 4 (GA4) using Google Tag Manager

Tracking HubSpot Form Submissions in Google Analytics 4 (GA4) allows businesses to gather valuable insights into how users interact with their forms and make data-driven decisions to improve the user experience. To track form submissions in GA4, you need to set up GA4 tracking on your website and integrate it with HubSpot forms using Google Tag Manager (GTM).

HubSpot form submissions refer to the process of filling out and submitting a form on a website that is powered by the HubSpot platform. When a user submits a form, the data they entered is collected and stored in HubSpot, where it can be used for various purposes, such as lead generation, marketing automation, and sales enablement.

To track HubSpot forms in Google Analytics 4 (GA4), you can follow these steps:

  • Create a GA4 property and a GA4 tag in Google Tag Manager (GTM).
  • Add the GA4 tag to your website.
  • Copy the HubSpot form tracking code from your HubSpot account and paste it into GTM.
  • Create a trigger in GTM to track form submissions in GA4.
  • Test the form submissions in GA4 by navigating to the “Events” report.

Here’s an example of a trigger in GTM to track form submissions in GA4:

  • Go to GTM and click on “Triggers.”
  • Click on the “New” button to create a new trigger.
  • Give the trigger a name, such as “HubSpot Form Submission.”
  • Select “Custom Event” as the trigger type.
  • Enter “formSubmission” as the event name.
  • Save the trigger.

Here is an example of a HubSpot data layer script code that can be used to push form submission data to the data layer:

<script>
  hbspt.forms.create({
    target: '#your-form-container',
    onFormSubmit: function($form) {
      var data = {
        event: 'form_submission',
        form_id: $form.attr('id'),
        form_name: $form.find('.hs-form-name').text().trim()
      };
      window.dataLayer = window.dataLayer || [];
      window.dataLayer.push(data);
    }
  });
</script>

This script pushes a data object to the data layer when a form submission is confirmed. The data object contains information about the form ID and form name, which can be used in GTM tags and triggers.

Note: This is a basic example, and you can modify it to include additional information about the form submission such as field values, user information, and more. You will need to replace “your-portal-id” and “your-form-id” with the actual values from your HubSpot account.

Disclaimer: Google tag manager belongs to Google property 

For Contact: mappchero@gmail.com

I am available for Hire on Freelancer: Freelancer.com

I am available for Hire on Upwork: Upwork.com

I am available for Hire on Peopleperhour: Peopleperhour.com

I am available for Hire on Guru: Guru.com

Gravity Forms Submission Google Analytic 4 Event using Google Tag Manager

Standard

Track Gravity Forms Google Analytic 4 (GA4) With Google Tag Manager

Gravity Forms Tracking refers to the process of collecting and analyzing data about form submissions made using the Gravity Forms plugin for WordPress. This data can be used to gain insights into how users interact with your forms, such as the number of submissions, form fields that are being used, and common user paths. The tracking data can be used to optimize and improve the user experience, making it easier for users to complete forms and providing you with valuable insights into your website and audience. There are different methods to track Gravity Forms submissions, such as using Google Analytics, Google Tag Manager, custom code, or built-in tracking features within Gravity Forms.

GA4 Gravity Forms Tracking refers to the process of tracking Gravity Forms submissions in Google Analytics 4 (GA4). This allows you to gather information about form submissions and use that data to gain insights into how users interact with your forms. By tracking form submissions in GA4, you can see how many submissions were made, which form fields were used, and common user paths, among other things. This information can be used to optimize and improve the user experience, making it easier for users to complete forms and providing you with valuable insights into your website and audience. To track Gravity Forms submissions in GA4, you can use the Gravity Forms Google Analytics Add-On or a custom solution that integrates GA4 with Gravity Forms.

To use the Gravity Forms Data Layer script with Google Tag Manager (GTM), you can follow these steps:

  • Create a GTM container.
  • Install the GTM code on your WordPress website.
  • Create a data layer variable in GTM to access the Gravity Forms data.
  • Use the Gravity Forms Data Layer script to push form submission data to the data layer.
  • Create a tag in GTM to track the form submissions.
  • Verify the form submissions in Google Analytics 4 (GA4)by navigating to the “Events” report.

By using the Gravity Forms Data Layer script with GTM, you can access detailed information about form submissions and use it to create custom tags and triggers to track specific events and activities.

Here is an example of a Gravity Forms data layer script code that can be used to push form submission data to the data layer:

<script>
  if (!isReload) {
    var data = {
      event: 'form_submission',
      form_id: formId,
      form_name: jQuery('#gform_' + formId + ' .gform_title').text().trim()
    };
    window.dataLayer = window.dataLayer || [];
    window.dataLayer.push(data);
  }
});
</script>

This script pushes a data object to the data layer when a form submission is confirmed. The data object contains information about the form ID and form name, which can be used in GTM tags and triggers.

Note: This is a basic example, and you can modify it to include additional information about the form submission such as field values, user information, and more.

Disclaimer: Google tag manager belongs to Google property 

For Contact: mappchero@gmail.com

I am available for Hire on Freelancer: Freelancer.com

I am available for Hire on Upwork: Upwork.com

I am available for Hire on Peopleperhour: Peopleperhour.com

I am available for Hire on Guru: Guru.com

Set Up a Google Analytic 4 (GA4) Form Submission Conversion With Google Tag Manager

Standard

Track Form Submissions Conversion Using Google Analytics 4 (GA4) With Google Tag Manager

GA4 form submission refers to the tracking of form submissions in Google Analytics 4 (GA4). GA4 is the latest version of Google’s web analytics tool, and it allows you to track form submissions as events in real-time. This provides you with valuable data about the effectiveness of your forms and helps you make data-driven decisions to optimize your forms and improve your results.

To track form submissions in GA4, you need to install the GA4 tracking code on your website and create a conversion goal in GA4 based on the form submission event. You can also use Google Tag Manager to send the form submission data to GA4 and improve the accuracy of your tracking.

By tracking form submissions in GA4, you can see how many form submissions were made, what their values were, and which pages and campaigns generated the most form submissions. This information can help you make data-driven decisions to improve your forms, increase conversions, and ultimately drive more success for your business.

To set up a GA4 form submission conversion with Google Tag Manager, follow these steps:

  • Create a GA4 property: If you haven’t already done so, create a GA4 property in Google Analytics and install the GA4 tracking code on your website.
  • Set up a trigger in GTM: In Google Tag Manager, create a trigger that will fire when the form is submitted. This trigger will typically be based on a DOM event, such as “Form Submission.”
  • Create a GA4 event tag: In Google Tag Manager, create a GA4 event tag that will send the form submission data to GA4. Configure the tag to use the trigger you created in step 2, and set the event category, action, and label to reflect the form submission.
  • Set up the conversion in GA4: In GA4, create a conversion goal based on the form submission event. Make sure that the conversion goal is set up to track form submissions as events, not pageviews.
  • Preview and publish: Preview the GTM container to make sure the form submission data is being sent to GA4 correctly. If everything looks good, publish the container to make the form submission conversion tracking live on your website.
  • Verify the conversion data: In GA4, verify that the form submissions are being tracked as conversions. This data will be available in the Conversions report, which will show you how many form submissions were recorded and what their values were.

By following these steps, you should be able to set up form submission conversion tracking in GA4 using Google Tag Manager.

Warning: If you do n’t know about javascript or do n’t have developing knowledge then do n’t try to Set Up a Google Analytic 4 (GA4) Form Submission Conversion With Google Tag Manager that can broke your site, Cart and other functionality 

Disclaimer: Google tag manager belongs to Google property 

For Contact: mappchero@gmail.com

I am available for Hire on Freelancer: Freelancer.com

I am available for Hire on Upwork: Upwork.com

I am available for Hire on Peopleperhour: Peopleperhour.com

I am available for Hire on Guru: Guru.com

Ninja Form Submission Google Analytic 4 Event using Google Tag Manager

Standard

Set Up Ninja Forms Submission Event Google Analytic 4 (GA4) Tracking using Google Tag Manager

Tracking Ninja Forms conversions allows you to measure the effectiveness of your forms in converting visitors into leads or customers. There are several ways to track Ninja Forms conversions, including using Google Tag Manager (GTM) and Google Analytics 4 (GA4), and using JavaScript events.

With GTM, you can create a “Form Submission” trigger that fires when a Ninja Form is submitted, and then create a tag for the appropriate tracking code (such as Google Analytics or GA4) that fires on that trigger.

With GA4, you can use the “nfFormSubmit” event to track Ninja Forms conversions. This event is triggered when a form is submitted, and you can add GA4 event tracking code to run when the event is fired.

In both cases, you need to make sure that the tracking code is installed on your site and the script runs after the GA4 tracking code.

To track Ninja Forms conversions with Google Analytics 4 (GA4) using JavaScript events, you can use the “nfFormSubmit” event that is triggered when a form is submitted. Here’s an example of how you can set this up:

  1. Add the following JavaScript code to your Google Tag Manager 
document.addEventListener( 'nfFormSubmit', function( event ) {
    'event_category': 'Form',
    'event_label': 'Ninja Form'
  });
}, false );

Replace ‘event_category’ and ‘event_label’ values with the appropriate value for your implementation. Make sure that GA4 tracking code is installed on your site and the script runs after the GA4 tracking code. Once you have added the tracking code, the “nfFormSubmit” event will fire whenever a Ninja Form is submitted, and the GA4 event code will run.

Warning: If you do n’t know about javascript or do n’t have developing knowledge then do n’t try to Ninja Form Submission Google Analytic 4 Event using Google Tag Manager that can broke your site, Cart and other functionality 

Disclaimer: Google tag manager belongs to Google property 

For Contact: mappchero@gmail.com

I am available for Hire on Freelancer: Freelancer.com

I am available for Hire on Upwork: Upwork.com

I am available for Hire on Peopleperhour: Peopleperhour.com

I am available for Hire on Guru: Guru.com

Create a Remarketing Audience in Google Analytics 4 (GA4)

Standard

Built a Custom Remarketing Audience with Google Ads in Google Analytics 4 (GA4)

In Google Analytics 4 (GA4), an Audience is a group of users who share similar characteristics or behavior. Audiences can be created based on different criteria, such as demographics, interests, or engagement. Audiences can be used to better understand your users and to create targeted marketing campaigns.

There are two types of Audiences in GA4:

  1. Predefined Audiences: These are audiences that are automatically created by GA4 based on certain criteria, such as users who have made a purchase or users who have visited the website from a specific geographic location.

2. Custom Audiences: These are audiences that you create yourself based on any combination of user properties and events. For example, you could create an audience of users who have viewed a specific page on your website or who have a certain value for a user property.

Once you have created an audience, you can use it to analyze the behavior and characteristics of that group of users and to create targeted marketing campaigns. You can also use audiences to create segments in GA4, which allow you to compare the behavior of different groups of users.

Audiences can be used in conjunction with GA4’s new feature such as Smart Goals, that helps you to understand your website’s conversion rate and to optimize your marketing campaigns. Additionally, you can use GA4’s integration with Google Ads to create targeted ads that reach specific audiences.

Creating an audience in Google Analytics 4 (GA4) is a way to segment and group users based on certain characteristics, such as behavior or demographics. This can be done by using the Audiences feature in the GA4 property. Here are the steps to create an audience:

  1. Go to the GA4 property and select the Audiences tab from the navigation menu.

2. Click the “+ Create Audience” button.

3. Select the type of audience you want to create. There are several options, including based on behavior, demographics, or custom criteria.

4. Define the audience by setting the criteria for inclusion. For example, if you’re creating an audience of users who have made a purchase on your website, you can set the criteria to include users who have completed a purchase event.

5. Give your audience a name and save it.

6. You can now use this audience to segment your reports and analyze the behavior of users within that audience. Additionally, you can use this audience to retargeting or personalize your marketing campaigns.

Warning: If you do n’t know about javascript or do n’t have developing knowledge then do n’t try to Create a Remarketing Audience in Google Analytics 4 (GA4) that can broke your site, Cart and other functionality 

Disclaimer: Google tag manager belongs to Google property 

For Contact: mappchero@gmail.com

I am available for Hire on Freelancer: Freelancer.com

I am available for Hire on Upwork: Upwork.com

I am available for Hire on Peopleperhour: Peopleperhour.com

I am available for Hire on Guru: Guru.com

 

Install Google Analytics 4 (GA4) on Squarespace

Standard

Switch to Google Analytics 4 on a Squarespace using Google Tag Managaer

Google Analytics 4 (GA4) is a new version of Google Analytics that replaces the Universal Analytics (UA) tracking code. GA4 is designed to provide a more integrated and user-friendly experience for tracking website and app data, and includes new features such as cross-device tracking, automated insights, and enhanced ecommerce tracking.

Squarespace is a web content management and website building platform. It provides users with an intuitive drag-and-drop interface for building websites, as well as powerful e-commerce tools for creating online stores. Squarespace offers a range of templates and design options, making it easy for users to create a unique and professional-looking website without the need for coding skills. The platform also includes features such as analytics, SEO optimization, and integrated hosting, making it a complete solution for website creation and management. Squarespace is widely used by individuals, small businesses, and organizations for creating and managing websites for personal, portfolio, and e-commerce purposes.

To install Google Analytics 4 (GA4) on Squarespace:

  1. Create a GA4 property in your Google Analytics account.
  2. Copy the GA4 tracking code from the GA4 property in Google Analytics.
  3. Log into Squarespace and navigate to the “Settings” panel.
  4. Click on “Advanced” and then “Code Injection”.
  5. Paste the GA4 tracking code into the “Header” code injection section.
  6. Save the changes.
  7. Verify the installation by checking the real-time reports in GA4.

To enable ecommerce tracking in Google Analytics 4 (GA4) on Squarespace:

he Squarespace data layer is a JavaScript object that provides information about the content, behavior, and context of a website. The data layer is designed to provide a common interface for passing data between the website and various marketing and analytics tools, including Google Analytics.

The data layer collects information about page views, product information, and events, and makes this data available to other tools through a standardized format. This allows website owners to track and analyze user behavior on their site, and use this information to make informed decisions about website optimization and marketing campaigns.

The Squarespace data layer is implemented on a site-by-site basis, and can be customized to meet the specific needs of each website. To use the data layer, a website owner would typically install the necessary tracking code and configure their analytics or marketing tools to receive data from the data layer.

Warning: If you do n’t know about javascript or do n’t have developing knowledge then do n’t try to Install Google Analytics 4 (GA4) on Squarespace without module that can broke your site, Cart and other functionality 

Disclaimer: Google tag manager belongs to Google property 

For Contact: mappchero@gmail.com

I am available for Hire on Freelancer: Freelancer.com

I am available for Hire on Upwork: Upwork.com

I am available for Hire on Peopleperhour: Peopleperhour.com

I am available for Hire on Guru: Guru.com

 

Google Analytics 4 (GA4) Enhanced Ecommerce Tracking for VirtueMart

Standard

 Google Analytics 4 Enhanced Ecommerce Tracking for VirtueMart using Google Tag Manager

VirtueMart GA4 ecommerce tracking refers to the process of tracking and analyzing customer behavior on an ecommerce website using Google Analytics 4 (GA4) and the VirtueMart e-commerce platform. VirtueMart is an open-source e-commerce solution for Joomla! websites, it allows you to create and manage an online store.

To enable GA4 ecommerce tracking on a VirtueMart website, you will need to set up a GA4 property and add the GA4 tracking code to your website. You can then use GA4 events and enhanced ecommerce tracking to track user behavior, conversion, and revenue on your VirtueMart website.

Integrate GA4 tracking with your VirtueMart website. These data Layer will typically allow you to easily add the GA4 tracking code to your website and provide additional features for tracking ecommerce data in GA4.

Install the GA4 tracking code on your website by following the instructions in the GA4 setup wizard.

  1. Create a GA4 ecommerce tracking data layer variable in GTM by going to the “Variables” section and clicking on the “New” button. Select the “Data Layer Variable” option and enter the name of the variable that will be used to store the ecommerce data (e.g. “transactionData”).

2. Install the GA4 ecommerce tracking data lalyer  for VirtueMart 

3. Configure the plugin by entering your GA4 tracking ID and setting other options such as currency and transaction data. The data layer GA4 should push the transaction data to the data layer variable you created in step 2.

4. Create a GA4 ecommerce tracking tag in GTM by going to the “Tags” section and clicking on the “New” button. Select the “GA4 Configuration” tag type and enter your GA4 tracking ID. In the “Tracking” section, select the “Ecommerce” option and enter the data layer variable name you created in step 2 (e.g. “transactionData”).

5. Test the ecommerce tracking by making a purchase on your website and checking the “Conversions” > “Ecommerce” section in GA4 to see if the transaction data is being collected correctly.

After ensuring that the ecommerce tracking is working correctly, you can set up goals and segments in GA4 to analyze and optimize your ecommerce performance.

Conversion Tracking for VirtueMart

Add Google Analytics 4 (GA4) With VirtueMart

Warning: If you do n’t know about javascript or do n’t have developing knowledge then do n’t try to Google Analytics 4 (GA4) Enhanced Ecommerce Tracking for VirtueMart without module that can broke your site, Cart and other functionality 

Disclaimer: Google tag manager belongs to Google property 

For Contact: mappchero@gmail.com

I am available for Hire on Freelancer: Freelancer.com

I am available for Hire on Upwork: Upwork.com

I am available for Hire on Peopleperhour: Peopleperhour.com

I am available for Hire on Guru: Guru.com