Jump to content

Resolved - How to Disable Search Customers Menu Flyout in Admin


Guest teknia

Recommended Posts

If you are familiar with editing code, please open the file /js/admin.js and find at around line 255, this:

$('#sidebar_control').mouseover(function(){

Change it to:

$('#sidebar_control').click(function(){

This change will require you to click the chevron to open it, and also to close it.

Link to comment
Share on other sites

Because javascript files are resources to be called after the page loads, like images, the browser has a tendency to cache such things.

If you ever find that an updated image isn't coming in, or an updated javascript file isn't getting called, then call it in the browser directly.

http://www.store.com/js/admin.js

It will display as text, but in almost all cases, once the browser has that new file, it will replace the one in the cache. And if that doesn't work, then:

To force a reload of a web page and bypass fetching from the cache with Firefox:

  • Press and hold Shift and left-click the Reload button (circular arrow).
  • Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
  • Press "Cmd + Shift + R" (MAC)

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...