Jump to content

Unable to access logout link ** SOLVED **


gpzzone

Recommended Posts

Hi

Ver 6.1.12 - Mican

I'm developing a new site and am really struggling with the session box.

Logging in is fine and the session box changes to welcome the logged in customer fine, also when you hover the mouse over the [+] button, the box details change to give you the logout and My account options - all of this is (I believe) exactly as designed and is functioning normally, but.....

If you  move the mouse away from from the [+] to select the Logout or My Account option, the box contents change before you can click either of them!!

Does anyone have any suggestions as to what may be causing this behaviour? Please see attached images.

Thanks in advance.

CD

 

 

Image3.jpg

Edited by gpzzone
Clarity
Link to comment
Share on other sites

Hover the mouse cursor over the [+]. The cursor changes to a finger-pointer. Then try moving the mouse cursor straight down until in-line with the phrase Log Out. The mouse cursor may switch back to an arrow, but the links should remain visible.

Then move the mouse cursor straight across to the link. The cursor should change to a finger-pointer again.

Link to comment
Share on other sites

In the Mican folder /js/ edit the file script.js as follows:

From:

$('#session_action_button, #session_actions').hover(function(){
	$('#session_actions').show();
	$('#basket_summary').hide();
},function(){
	$('#session_actions').hide();
	$('#basket_summary').fadeIn();
});


To:

$('#session_action_button, #session_actions').hover(function(){
	$('#basket_summary').hide();
	$('#session_actions').show();
},function(){
	$('#session_actions').delay(4000);
	$('#session_actions').hide('fast'); /* $('#session_actions').hide(); */
	$('#basket_summary').fadeIn();
});

Force your browser to reload the page resources (javascript, CSS, etc). This is usually done with CTRL-F5.

This change adds a four second delay after moving the mouse out of the trigger area before the links disappear.

Edited by bsmither
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...