mobgro LiteCart Fan Từ United States Thành viên kể từ thg 12 2016 mobgro 10 thg 5 2022 12:29 Hi all, How would I reset the product views and product sold quantities to 0? Thanks Grant
vilaiporn LiteCart Fan Từ Thailand Thành viên kể từ thg 8 2017 vilaiporn 10 thg 5 2022 14:50 Hello, I would go for delete all the orders. But maybe I did not well understand what you want to do. What do you mean for product views?
mobgro LiteCart Fan Từ United States Thành viên kể từ thg 12 2016 mobgro 10 thg 5 2022 14:59 In the admin section there is product views list "Most Visited Products", reset the product count views to "0". Deleting order does not subtract inventory. Also tried deleting individual items in each order and does not adjust inventory. Just need to reset those to zero starting point.. Thank for replying, Grant
tim Founder Từ Sweden Thành viên kể từ thg 5 2013 tim 10 thg 5 2022 16:49 The views and purchases counter is in the mysql lc_products table. Here is a query you can run in phpMyAdmin: UPDATE lc_products SET views = 0, purchases = 0; To restock quantities you must delete the orders or give them an order status that doesn't have the property "is sale".
mobgro LiteCart Fan Từ United States Thành viên kể từ thg 12 2016 mobgro 10 thg 5 2022 17:00 Thanks Tim, Grant