Search the Community
Showing results for tags 'display error'.
-
The debug mode is widely used to see the errors on your shop and when: you get blank pages; you get 500 Internal Server Error; you have strage issues with your shop and don't know where to start; Edit: Debug mode on PrestaShop 8.0 PrestaShop Dashboard >...
- 11 replies
-
- 12
-
-
-
- 8.0
- error reporting
- (and 9 more)
-
Hi guys, I'm trying display an error message if the customer is not logged in. if ($this->context->customer->isLogged()) { .......... } else { $this->errors[] = Tools::displayError('You must be logged in to request a custom order'); } But the error message isn't being displaye...