for some reason, some customers might face account hanging in web and mobile app when trying to add products to cart or make a order, it happens specially when there is a upgrade in the web or mobile app, to fix these accounts follow you need to fix the user cart status by doing the following:
UPDATE quote set is_active = 1 where is_active = 0;
now check the user account and see if it is working!
Update:
after sometime using the same method fixing the issue i had came across some accounts that are stuck even after applying the solution and after days or research and consulting i turns out that the source of the issue was from one of the modules that i have disabled it from the admin and the solution was to disable the hole module and rebuild the site, in my case the module was a Cash on Delivery module
bin/magento module:disable Cybage_CodExtracharge "replace the extension with the one your suspect causing the problem"
bin/magento setup:upgrade
bin/magento cache:flush
Comments
Post a Comment