1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

Google Aanlytics and Real Estate Ecommerce Site

Discussion in 'Google Analytics' started by jameskertley, Sep 29, 2009.

  1. #1
    Hi friends

    thanks for support till date.

    I have some problem while setting up GOALS In GA

    I have real estate education site which services with some real estate tools and books and some reports.

    I want to track that my all products which is sold/buy by any user.
    What is in my site is that,

    If you want to buy it you must have to login before that.

    So automatically one ID generates every time when new user register.

    And about the goal set, I can’t set thank you page as most of all have.

    My thank you page is also come with the ID which generates when user login
    How do I set my goal in GA (google analytics) for different users?

    I have to set many goals for different products, like book, reports or tools
    Can anyone suggest me where to do and how to do?

    Thanks in advance

    Regards
    James
     
    jameskertley, Sep 29, 2009 IP
  2. Deus Ex

    Deus Ex Peon

    Messages:
    531
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Enabling E-Commerce Reporting in the Profile

    The first step of tracking e-commerce transactions is to enable e-commerce reporting for your website's profile. To enable e-commerce reporting, please follow these steps:

    Log in to your account.
    Click Edit next to the profile you'd like to enable.
    On the Profile Settings page, click edit next to Main Website Profile Information.
    Change the E-Commerce Website radio button from No to Yes.
    Receipt Page Format

    The second step is to ensure that the tracking code is included in the receipt page in the standard fashion. This may be done using a server side include, or other template driver, or can simply be hand-coded into your HTML code:

    <script type="text/javascript">
    var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
    document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
    </script>

    <script type="text/javascript">
    try {
    var pageTracker = _gat._getTracker("UA-xxxxxx-x");
    pageTracker._trackPageview();
    } catch(err) {} </script>

    Next, somewhere in the receipt below the tracking code, call the _addTrans() and _addItem() functions. Begin with a call to _addTrans() to establish a transaction. _addTrans() takes the following arguments: Order ID,Affiliation, Total, Tax, Shipping, City, State, Country. For each item that the visitor purchases, call _addItem(). _addItem() takes the following arguments: Order ID, SKU or Code, Product Name, Category, Price, Quantity.

    Here is a complete example:

    <script type="text/javascript">

    var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");

    document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));

    </script>


    <script type="text/javascript">

    try {

    var pageTracker = _gat._getTracker("UA-XXXXX-1");


    pageTracker._trackPageview();


    pageTracker._addTrans(

    "1234", // Order ID

    "Mountain View", // Affiliation

    "18.28", // Total

    "1.29", // Tax

    "5", // Shipping

    "San Jose", // City

    "California", // State

    "USA" // Country

    );


    pageTracker._addItem(

    "1234", // Order ID

    "DD44", // SKU

    "T-Shirt", // Product Name

    "Green Medium", // Category

    "11.99", // Price

    "1" // Quantity

    );

    pageTracker._trackTrans();

    } catch(err) {}</script>

    http://www.google.com/support/googleanalytics/bin/answer.py?hl=en&answer=55528 for more -- there are a ton of way

    Also -- http://www.roirevolution.com/blog/2...e_initial_referrer_with_google_analytics.html
     
    Deus Ex, Oct 2, 2009 IP
  3. abhishekseo

    abhishekseo Peon

    Messages:
    141
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    If you want to goal setting in your ecommece website then you have to know which pages are most important and why u want to set a page a goal setting then u have to extract some pages by user and make 1 landing page which will be your goal setting
     
    abhishekseo, Oct 2, 2009 IP