Hi,
We have 4 categories of messages in applications. 1. Warning messages 2. Fatal errors 3. Notice messages 4. Parse error.
In case of Fatal error and parser error program execution stop. Warning and notice messages rarely stop program execution.
You can turn off notice messages by placing following code in index.php
PrestaShop Tutorials Videos [How to do Tasks]
// Report all errors except E_NOTICE error_reporting(E_ALL & ~E_NOTICE);