Alert box in dashboard.

Permalink
Hello, I want to display alert box in dashboard after user login. In which file i want edit for display alert box.
For Example when user logged in and go to dashboard just display alertbox like "Welcome Admin".

pricus1
 
planist1 replied on at Permalink Reply
planist1
In your example, would you want that alert box to happen every time they go to the dashboard?

If so you could modify the root/concrete/single_pages/dashboard/view.php file and add the following after line 92.

<script type="text/javascript">
window.onload = dopop()
function dopop()
{
   alert ("Welcome Admin!");
}
</script>


Of course it would be prudent to copy out the view.php into the root/single_pages/dashboard/ folder.
pricus1 replied on at Permalink Reply
pricus1
This is not working... Please give me another solution...
JohntheFish replied on at Permalink Reply
JohntheFish
Not a solution, but some friendly advice on the process:
http://www.concrete5.org/documentation/how-tos/editors/getting-help...