Announcement

Collapse
No announcement yet.

Free - Updated Google Analytics Module For Miva Merchant 5.5

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Free - Updated Google Analytics Module For Miva Merchant 5.5

    Miva Merchant is proud to announce that we've worked out an arrangement with Kemper Strategic, the creators of the best Miva Merchant/Google Analytics integration on the market today, to offer that module FREE of charge.

    Simply go to: http://www.kemperstrategic.com/googl...-merchant.html and you can get the module, now, free.

    Module Details
    • The most complete and up to date Google Analytics module for Miva Merchant 5.5
    • Supports new asynchronous tracking code
    • Ecommerce conversion tracking
    • Checkout goal/funnel visualization setup instructions
    • On-site search tracking
    • Optional subdomain and cross-domain tracking capabilities
    • URL structure overrides
    • Miva Merchant PR7 (Wombat) tested


    *Ecommerce conversion tracking not compatible with PayPal Website Payments Standard
    Thanks,

    Rick Wilson
    CEO
    Miva, Inc.
    [email protected]
    https://www.miva.com

    #2
    Re: Free - Updated Google Analytics Module For Miva Merchant 5.5

    Now available via MivaCentral as well:
    http://www.mivacentral.com/Merchant2...ct_code=KSE-GA

    Comment


      #3
      Re: Free - Updated Google Analytics Module For Miva Merchant 5.5

      Does this support tracking Google Checkout, and if so, how does that work?
      Regards,

      216digital, Inc.
      (216)-505-4400
      (877)-907-3277

      Comment


        #4
        Re: Free - Updated Google Analytics Module For Miva Merchant 5.5

        The option to enable Google Analytics tracking is within the Google Checkout module itself. (there is a checkbox within the Google Checkout module admin)

        That said, the code implemented by the Google Checkout module has not been updated for use with the new Google Analytics Asynchronous tracking code. There are two changes required to bring the code up to date:

        1. Google Checkout button form onsubmit needs to be changed from:
        Code:
        onsubmit="setUrchinInputCode();
        to:
        Code:
        onsubmit="setUrchinInputCode(pageTracker);"
        2. External script call needs to be changed from:
        Code:
        <script src="https://checkout.google.com/files/digital/urchin_post.js" type="text/javascript">
        to:
        Code:
        <script src="https://checkout.google.com/files/digital/ga_post.js" type="text/javascript">
        Alternatively, I have seen the following used in place of the form onsubmit, which is technically proper asynchronous usage:

        Code:
        <script src="https://checkout.google.com/files/digital/ga_post.js" type="text/javascript">
        <script>
        _gaq.push(function () { 
        var pageTracker = _gat._getTrackerByName();
        setUrchinInputCode(pageTracker);
        });
        
        I had reported this to Miva Merchant some time back, however I don't think it has been resolved. Hopefully we will see a fix in a future Google Checkout module update.

        Comment

        Working...
        X