Announcement

Collapse
No announcement yet.

Quick View Analytics

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

    Quick View Analytics

    Had an interesting question asked - is there any way to gauge the usage of the Quick View feature which is now part of some of the ReadyThemes but I'm sure stores that have scripted in their own version (such as the store that has asked me this question).

    Thoughts, suggestions?

    Thanks,
    Leslie
    Leslie Kirk
    Miva Certified Developer
    Miva Merchant Specialist since 1997
    Previously of Webs Your Way
    (aka Leslie Nord leslienord)

    Email me: [email protected]
    www.lesliekirk.com

    Follow me: Twitter | Facebook | FourSquare | Pinterest | Flickr

    #2
    Re: Quick View Analytics

    Yeah you can add a google analytics event to it so you can see when someone clicks it. It looks like this:


    Code:
    <a href="http://www.domain.com" onclick="_gaq.push(['_trackEvent', 'Frameworks', 'Click', 'Bootstrap Framework Download']);">Download Now</a>

    https://developers.google.com/analyt...ntTrackerGuide
    Brennan Heyde
    VP Product
    Miva, Inc.
    [email protected]
    https://www.miva.com

    Comment


      #3
      Re: Quick View Analytics

      Hey Leslie,

      Have you played around with Click Event Tracking at all? I use it quite a bit on many sites.

      https://developers.google.com/analyt...ntTrackerGuide

      Try tagging the link with this:

      Code:
      onclick="_gaq.push(['_trackEvent', 'Click', 'Quick View', '&mvte:product:name;']);"

      You can also use jQuerry on CTGY like this like this.

      Code:
      <script type="text/javascript">
      $(document).ready(function(){	
      $('a.your-css-class').click(function(){
      _gaq.push(['_trackEvent', 'Click', 'Quick View', '&mvte:product:name;']);
      });
      });
      </script>

      Ron
      Ron Frigon
      Jedi Webmaster Obi-Ron Kenobi

      Comment


        #4
        Re: Quick View Analytics

        Thank you both - I've done a little bit of the click link tracking. This helps bring it into perspective.
        Leslie Kirk
        Miva Certified Developer
        Miva Merchant Specialist since 1997
        Previously of Webs Your Way
        (aka Leslie Nord leslienord)

        Email me: [email protected]
        www.lesliekirk.com

        Follow me: Twitter | Facebook | FourSquare | Pinterest | Flickr

        Comment

        Working...
        X