Page 1 of 1

Backend Statistik

Posted: 25 Apr 2024, 21:00
by Maggi
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

Re: Backend Statistik

Posted: 27 Apr 2024, 13:26
by lpatrick
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):

Code: Select all

update #_phocacart_products set hits = 0 where hits > 0; 
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

Re: Backend Statistik

Posted: 27 Apr 2024, 13:36
by Maggi
@lpatrick: Thanks for your explanation, I will try your hints ...
THX