Hi,
at the backend under statistic there will shown the top 5 "most viewed" and "most selled" products.
So my question is, it is possible to set the staistic to zero, becuase at the beginning I visit it much time for tests...
And it is possible to see more than 5 products for most visited products statistic?
Or is there another plugin that document the clicks to the detail pages of phoca cart?
THX
Backend Statistik
-
- Phoca Enthusiast
- Posts: 94
- Joined: 13 Feb 2024, 17:00
Re: Backend Statistik
I am looking at Phoca Cart 5 beta and I don't see any Batch processing to reset hit count so it won't be in 4.4 either I think.
You could go into the database if you want to reset most viewed for the complete shop (replace # with your Joomla table prefix):
If you want to do it only for certain categories or products, you will have to rewrite the query.
For the most sold, you would need to delete the orders I suppose.
I don't know about the other questions, sorry
You could go into the database if you want to reset most viewed for the complete shop (replace # with your Joomla table prefix):
Code: Select all
update #_phocacart_products set hits = 0 where hits > 0;
For the most sold, you would need to delete the orders I suppose.
I don't know about the other questions, sorry
-
- Phoca Member
- Posts: 29
- Joined: 18 Jan 2012, 12:58
Re: Backend Statistik
@lpatrick: Thanks for your explanation, I will try your hints ...
THX
THX