ProductCart E-Commerce Solutions Homepage
Forum Home Forum Home > ProductCart > Customizing ProductCart
  New Posts New Posts RSS Feed - Tracking Cross Sale
  FAQ FAQ  Forum Search   Events   Register Register  Login Login

Tracking Cross Sale

 Post Reply Post Reply
Author
Message
MOlson View Drop Down
Newbie
Newbie


Joined: 16-November-2005
Status: Offline
Points: 0
Post Options Post Options   Thanks (0) Thanks(0)   Quote MOlson Quote  Post ReplyReply Direct Link To This Post Topic: Tracking Cross Sale
    Posted: 14-March-2007 at 4:48pm
Our marketing department asked the question, Can we track how many purchases were made through the cross sale feature.  She was wondering because she spends a lot of time on this and just wanted to know if it was worth her time.

Anyone have any ideas?
Back to Top
netprofits View Drop Down
Certified ProductCart Developers
Certified ProductCart Developers


Joined: 05-January-2006
Location: United States
Status: Offline
Points: 22
Post Options Post Options   Thanks (0) Thanks(0)   Quote netprofits Quote  Post ReplyReply Direct Link To This Post Posted: 14-March-2007 at 5:34pm

As far as I know, PC doesn't track this information related to sales.

You could run the Export Sales Data report and see which orders have multiple products. Then compare those products to see if they were related in cross sells.

That's the only option I can see right now.

NetProfits Internet Consulting

Certified ProductCart Developer

Our Site
Back to Top
thrion View Drop Down
Groupie
Groupie
Avatar

Joined: 27-October-2005
Location: United States
Status: Offline
Points: 0
Post Options Post Options   Thanks (0) Thanks(0)   Quote thrion Quote  Post ReplyReply Direct Link To This Post Posted: 14-March-2007 at 10:58pm
Although not a function of the cart, many analytics packages will tell you how many clicks you receive on any given page on your site, so you could get a report through your analytics package to at least see how many people are clicking on your cross selling items.
Back to Top
MOlson View Drop Down
Newbie
Newbie


Joined: 16-November-2005
Status: Offline
Points: 0
Post Options Post Options   Thanks (0) Thanks(0)   Quote MOlson Quote  Post ReplyReply Direct Link To This Post Posted: 15-March-2007 at 11:10am
Originally posted by thrion thrion wrote:

Although not a function of the cart, many analytics packages will tell you how many clicks you receive on any given page on your site, so you could get a report through your analytics package to at least see how many people are clicking on your cross selling items.


I like the idea, but how do I differentiate between cross sale clicks and direct views of that product?
Back to Top
thrion View Drop Down
Groupie
Groupie
Avatar

Joined: 27-October-2005
Location: United States
Status: Offline
Points: 0
Post Options Post Options   Thanks (0) Thanks(0)   Quote thrion Quote  Post ReplyReply Direct Link To This Post Posted: 15-March-2007 at 12:20pm
Originally posted by MOlson MOlson wrote:

I like the idea, but how do I differentiate between cross sale clicks and direct views of that product?


That's the downside.  You can't track the sale, but what you track is the click on the cross selling item itself.  You could then look at the number of times the cross sell link was clicked (not the number of times the product was viewed, but rather the number of times the cross selling link on the product details page was clicked) and compare it to the number of times that product was sold.

If you see, for example, that for product ABC you have a cross selling product of DEF listed.  Your analytics package tells you that on the page for ABC, the link to DEF was licked 14 times and PC says that you sold 7, you could make an assumption that 50% of the time people buy the cross selling product that they clicked on.

Again, you are making an assumption, but it's a good place to start.  Not perfect, but closer than what you have.


Back to Top
NWilliams View Drop Down
Newbie
Newbie


Joined: 19-November-2006
Location: United States
Status: Offline
Points: 0
Post Options Post Options   Thanks (0) Thanks(0)   Quote NWilliams Quote  Post ReplyReply Direct Link To This Post Posted: 15-March-2007 at 5:42pm
What I would do is edit the pcs_CrossSellingAccessories code to include an extra query string.. something like crossSellClick=1.  At which point in viewPrd.asp you can check to see if the query string exists, and increment a counter in the Products table in the database.  You would, of course, need to add an additional field to the Products table.  All you'd really need to do is something like:
(make sure you put this code in an area where the rs object isn't being used)

If QueryString("crossSellClick")=1 Then
    Query="UPDATE products SET crossSellClicks=crossSellClicks+1 WHERE idProduct=" & pIdProduct
    set rs=server.CreateObject("ADODB.RecordSet")
    set rs=conntemp.execute(query)
End If

This wouldn't give you how many sales you make through the feature, but it would show you how many times the product has been viewed specifically by clicking a link from the accessories area of cross selling.  At which point I believe you're back at square one with regard to probability of purchase (unless you're using discounted bundles [which if you are, you'd need to duplicate the above code in pcs_CrossSellingDiscounts]).

Then from the admin panel you could edit the export area to add this field.. I can't give you any specifics on that, but the above would be the first step.

If you wanted to track the actual sales, you could forward the crossSellClick value to the cart array or something similar.



Edited by NWilliams - 15-March-2007 at 5:49pm
Back to Top
MOlson View Drop Down
Newbie
Newbie


Joined: 16-November-2005
Status: Offline
Points: 0
Post Options Post Options   Thanks (0) Thanks(0)   Quote MOlson Quote  Post ReplyReply Direct Link To This Post Posted: 15-March-2007 at 6:15pm
Thank you, that's a really good idea.  Even if I just knew how many clicks I got out of it, that would help.
Back to Top
 Post Reply Post Reply
  Share Topic   

Forum Jump Forum Permissions View Drop Down

Forum Software by Web Wiz Forums® version 12.04
Copyright ©2001-2021 Web Wiz Ltd.

This page was generated in 0.078 seconds.