Page 3 of 3
Re: Cannot edit order in admin panel OC 1.5.5.1
Posted: Sun Apr 28, 2019 6:59 am
by Dunald
Hi!
The products exist in the shop. The customer changed her mind and I try to delete one item from the order....
Re: Cannot edit order in admin panel OC 1.5.5.1
Posted: Mon Apr 29, 2019 5:35 am
by ADD Creative
You could check your web browser's error console (usually F12) in case there is some sort of JavaScript error causing the problem. I've not managed to recreate the problem myself on 1.5.5.1, so I would imagine it's caused by some certain settings or an extension.
Re: Cannot edit order in admin panel OC 1.5.5.1
Posted: Wed May 01, 2019 3:42 pm
by cedcommerceteam
Hi Dunald,
There might be some JS issue if you are not able to edit your core order page.
You can check that by opening your browser's console panel (either by
right click on mouse and select Inspect Element (Q) or
press F12 from your keyboard) second tab.
You can also add following code at the top of startup.php file (file path
system > startup.php ) to check if any Internal Server Error occurs or not :
Code: Select all
error_reporting(1);
ini_set('display_errors', 'On');
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);