I want to display a warning message 2 minutes before timing out the customer login session, asking if they are still there. I set the cookie life time to 15 minutes, so after 13 minutes, I want to warn the user about the session time out. How to do this in magento ?

I would be pleased if anyone provide a clear cut idea. I am a newbie to magento.

link|improve this question

70% accept rate
feedback

1 Answer

up vote 3 down vote accepted

Add the following code at the bottom of your /add/design/frontend/[your-interface]/[your-theme]/page/html/head.phtml:

<script type="text/javascript">

 var t = setTimeout('areYouStillThere()', 3000);

 function areYouStillThere(){
  if(confirm('Session is expiring. Are you still there?')){
   location.reload();
  }
 }

</script>

You can improve it with prototype or jQuery if you want.

link|improve this answer
Great, thank you – Anz Dec 20 '11 at 10:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.