Hi
Does it sound normal to have 70-100 Anon customers every day and not one customer that registers? (the website is only about 2 month old)
Are these anon customers real people?
Thanks
Hi
Does it sound normal to have 70-100 Anon customers every day and not one customer that registers? (the website is only about 2 month old)
Are these anon customers real people?
Thanks
I would guess that they are not real customers, most are bots I would assume
OK thanks for the reply
You could check the referrer column in the customer table to see if they are potential customers coming from search engines. You could also check to see whether they have something in their shoppingcarts - they could be window shoppers.
http://www.esedirect.co.uk
--------------------------------------------------------------------------
Using MS 9.2.0.0 with the following customisations:
Lightbox/Fancybox enlarged images;
Auto-suggest searchbox;
Extra product information shown only to our IP Address (such as supplier info, costs, etc.);
Failed transactions emailed via trigger;
Custom app to show basket contents when customer online;
Orders pushed through to accounting systems.
All the above without source!
You would need to do that via the db
If you have access to the db, say using SQL-Server Management Studio that would be best/easiest.
This will give an indication of shopping cartsCode:select customerid, Referrer, LastIPAddress from customer with (nolock)
Code:select c.customerid, Referrer, LastIPAddress, ProductID, VariantID, Quantity from customer as c with (nolock) join ShoppingCart as sc with (nolock) on c.CustomerID = sc.CustomerID
http://www.esedirect.co.uk
--------------------------------------------------------------------------
Using MS 9.2.0.0 with the following customisations:
Lightbox/Fancybox enlarged images;
Auto-suggest searchbox;
Extra product information shown only to our IP Address (such as supplier info, costs, etc.);
Failed transactions emailed via trigger;
Custom app to show basket contents when customer online;
Orders pushed through to accounting systems.
All the above without source!
You could do it through your DB, I actually didn't think about that way. That would be ideal and you can tell if people are adding things to wishlist and what not.
Have you thought about looking into some sort of analytic software? I know that Google Analytics is free to use, Google is a pretty reliable and if you need assistance there are tons of forums on there stuff. Here is link to them:
http://www.google.com/analytics/
Through them you will be able to track where all your traffic is coming from (state, region, country). It will also show you what keywords are driving the most traffic.
Hope you start getting those sales! Best of luck to you.