Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Mouseflow tracking install steps

Within squiz, if using any of the customisations under the new hub design (Victoria Hub#1321146) use the following steps:

  1. Go to the asset metadata

  2. Under the metadata field “External JS file (externalJs #1323850)” add the asset “mouseflow #1785436”. If there is an asset already in the External JS file metadata, put a request in for a developer to try and include mouseflow in the existing metadata.

  3. Commit, then preview and view page source and search for ‘mouseflow’ and you should see the following script:

    Code Block
    languagehtml
    <script type="text/javascript">
       // Enable mouseflow tracking on the page
    
       var _mfq = _mfq || [];
       (function() {
           var mf = document.createElement("script"); mf.type = "text/javascript"; mf.async = true;
           mf.src = "//cdn.mouseflow.com/projects/4a7ff1cf-f5b8-4dd8-95da-13bfe4f4e580.js";
           document.getElementsByTagName("head")[0].appendChild(mf);
       })();
     
    </script>

If using a customization of the old design (Common#387822) use the following steps:

  1. Go to the asset metadata

  2. Under the metadata field “enableMouseflowVUW (enableMouseflowVUW #364679)”, select enableMouseFlow

  3. Commit, then preview and view page source, search for ‘mouseflow’ and you should see the following script:

    Code Block
    <script type="text/javascript">
       // Enable mouseflow tracking on the page
       var enableMouseflow = "1";
       if(enableMouseflow == "1"){
       var _mfq = _mfq || [];
       (function() {
           var mf = document.createElement("script"); mf.type = "text/javascript"; mf.async = true;
           mf.src = "//cdn.mouseflow.com/projects/4a7ff1cf-f5b8-4dd8-95da-13bfe4f4e580.js";
           document.getElementsByTagName("head")[0].appendChild(mf);
       })();
       }
    </script>
  4. Ensure that the line var enableMouseflow = "1"; shows = “1” and not = “0” otherwise the script will not run.

...

Our Mouseflow plan

Currently, we are using the Pro Plan, which has 150k recorded sessions (credits), 20 websites, 12 months of storage and unlimited heat maps.

...