Microsoft Clarity script

Solved

Microsoft Clarity script

knkn
Visitor
2 0 2

I am trying to install Microsoft Clarity, but the Shopify tech team took out the box to put the script in. Customer service is unable to modify the code to work. Does anyone know how to fix this?

Screenshot 2024-10-04 at 12.23.56 AM.png

 

<script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "od5gfv1des"); </script>

Accepted Solution (1)

Small_Task_Help
Shopify Partner
1054 45 101

This is an accepted solution.

Hi,

 

Need to add Clarity script at theme.liquid

 

It should look like this  (paste the code just before </head>)

...
<script type="text/javascript">
  (function(c,l,a,r,i,t,y) {
    w[c]=w[c]||function(){
    (w[c].q=w[c].q||[]).push(arguments)},w[c].l=1*new Date();
    t=l.createElement(a),y=l.getElementsByTagName(a)[0];
    t.src=r;y.parentNode.insertBefore(t,y)
  })(window,"Clarity","script","https://www.clarity.ms/tag/YOUR_TRACKING_CODE");
</script>
</head>

 

To Get Shopify Experts Help, Click Here or E-mail - hi@ecommercesmalltask.com
About Us - We are Shopify Expert India
At Google My Business - Ecommerce Small Task - Hire Shopify Developers Ahmedabad

View solution in original post

Replies 2 (2)

Small_Task_Help
Shopify Partner
1054 45 101

This is an accepted solution.

Hi,

 

Need to add Clarity script at theme.liquid

 

It should look like this  (paste the code just before </head>)

...
<script type="text/javascript">
  (function(c,l,a,r,i,t,y) {
    w[c]=w[c]||function(){
    (w[c].q=w[c].q||[]).push(arguments)},w[c].l=1*new Date();
    t=l.createElement(a),y=l.getElementsByTagName(a)[0];
    t.src=r;y.parentNode.insertBefore(t,y)
  })(window,"Clarity","script","https://www.clarity.ms/tag/YOUR_TRACKING_CODE");
</script>
</head>

 

To Get Shopify Experts Help, Click Here or E-mail - hi@ecommercesmalltask.com
About Us - We are Shopify Expert India
At Google My Business - Ecommerce Small Task - Hire Shopify Developers Ahmedabad
knkn
Visitor
2 0 2

Thank you!