Having the error message at the top of the pager content is frustrating when using a mobile device, how can i go about moving the error to the foot of the page where it will still be noticed but not require scrolling every single view?
What message do you see at the top?
If it’s ugly PHP messages, you should just turn off display_errors on your php.ini, those messages really aren’t supposed to be dumped on screen, they should be just checked in the logs.
Hi,
If you open “modules/Administration/DisplayWarnings.php” file and see the first function “displayAdminError”
You can modify it like this to see the error message at the footer of the page. It will display every admin error message at page bottom. I have spend many minutes to do this for you.
function displayAdminError($errorString) {
echo '<script>$("document").ready(function(){$("footer.expandedSidebar").prepend("<p class=\'error\'>'.$errorString.'</p>");});</script>';
}
I have tested that, it is working fine.
Thanks