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